Saves a program to a specified file.
SAVE [ALL] "file descriptor" [, A]
---------------
String expression
SAVE "DEMO1"
ALL
: Outputs all programs from P0 to P9. Can only be specified for output to cassette tape.[, A]
: Specifies ASCII format. Binary internal format is the default option
when omitted. Cannot be specified while SAVE ALL
is specified.ALL
outputs programs from areas P0 to P9 to cassette tape as an ALL
file.CAS0:
is the default option when the device name is omitted from the file descriptor.
When the entire file descriptor is omitted, the file is output to cassette tape and saved without a filename., A
causes the program to be converted to and saved in ASCII format.
This format uses alphabetic characters such as those which appear when the LIST command is executed., A
is not specified. However,
files are saved in ASCII format whenever COM0:
is specified in the file descriptor, regardless of the , A
specification.SAVE
execution is complete.SAVE "CAS0:TEST"
Saves a program on cassette tape under the filename TEST.