Closes open files.
CLOSE 1,3 |
Returns -1 if end of file has been reached
Read from file opened with OPEN.
Allows input of line from open file, including commas. Line is terminated by [ENTER].
Load program file from tape. First file encountered will be loaded, unless program name is specified.
LOAD |
LOAD "NAME" |
LOAD "NAME",R |
Load machine language program from tape. Offset to loading address main be given.
LOADM |
LOADM"NAME" |
LOADM"NAME",&H6000 |
Turns tape motor on/off.
Opens a file or device. The argument a
must be either "I" for input or "O" for output. Channel
must be between 1 and 16.
The filename
specifies device ("KYBD" - keyboard, "SCRN" - screen, "LPRT" - line printer, "CASS" - cassette tape) and if relevant, a file name on the device.
Device defaults to CASS.
OPEN "I", #1, "CASS : FILE.TWO" |
Prints content of following list to the specified file.
Prints formatted output to the specified file.
Transfer BASIC programs from memory to tape.
SAVE "prog" |
SAVE "prog",A |
Transfer machine code to tape.
SAVEM "codefile",&H6200,&H7520,&H6210 |
Skips to end of specified program on tape.
SKIPF |
SKIPF"NAME" |