A utility/extension for MTerm, for exchanging information between two modems.
To use Send-VARS with a BASIC program:
- Load BASIC program and/or variables that you want to send by MTerm modem program.
- Merge Send-VARS.
- Enter: go to 3.
The variables will be converted to a modem sendable form. When the recipient gets the program, he should enter: go to 4. The variables will now be restored.
To send code from high memory enter: go to 2. You will be prompted for length and address of code. The code will be moved into x$ and variables converted to sendable form.
When received the recipient must enter: go to 4. The code in x$ will be replaced in high memory.
Appears on
Capital Area Timex Sinclair User Group’s Library Tape.
Library tape of the Indiana Sinclair Timex User’s Group.
Source Code
1 REM *K\\"\gh*Y\\"K\\<>*\gh"K\\<>*M\\T]+F+N*\ih GO SUB VAL *M\\N<>*M\\ RESTORE +F+N LLIST GO SUB [\ih GO SUB VAL *M\\N<>\d| OPEN # 2 INPUT "Code length? ";col: INPUT "Source address? ";sad: DIM x$(col): POKE 26777,INT (sad/256): POKE 26776,256*(sad/256-INT (sad/256)): LET x$(1)=CHR$ USR 26735: REM line puts code in x$ 3 RANDOMIZE USR 26715: STOP : REM line hides variables 4 RANDOMIZE USR 26728: STOP : REM line reveals variables 5 IF sad AND col THEN LET x$(1)=CHR$ USR 26754: STOP : REM line replaces code 6 STOP 7 REM SEND-VARS An MTERM MODEM program utility \* 1984 David Hoshor TO USE SEND-VARS WITH A BASIC PROGRAM, LOAD BASIC PROGRAM AND/OR VARIABLES THAT YOU WANT TO SEND BY MTERM MODEM PROGRAM. MERGE SEND-VARS. ENTER: GO TO 3.THE VARIABLES WILL BE CONVERTED TO A MODEM SENDABLE FORM. WHEN THE RECIPIENT GETS THE PROGRAM, HE SHOULD ENTER: GO TO 4. THE VARIABLES WILL NOW BE RESTORED. 8 REM TO SEND CODE FROM HIGH MEMORY ENTER: GO TO 2. YOU WILL BE PROMPTED FOR LENGTH AND ADDRESS OF CODE. THE CODE WILL BE MOVED INTO X$ AND VARIABLES CONVERTED TO SENDABLE FORM. WHEN RECEIVED THE RECIPIENT MUSTENTER: GO TO 4 THE CODE IN X$ WILL BE REPLACED IN HIGH MEMORY.