-
SHIFT RUN/STOP
Load and run 1st program on disk (shift-esc
) -
C= RUN/STOP
load last run program (tab-esc
) -
F1
@$:* RETURN
or@$ RETURN
Display directory -
F2
%D[filename]
List a BASIC program from disk -
F3
/[filename]
Load a BASIC program -
F4
@T[filename]
List an ASCII (text) file from disk -
F5
↑[filename]
Load and run a BASIC program -
F6
←[filename]
Save a BASIC program -
F7
%[filename]
Load an ML program -
F8
@"S:[filename]
Scratch/Delete a file (cursor up do file in dir)
CTRL+D
Default drive toggleCTRL+A
Toggle all files for copyCTRL+S
Stop / freeze LISTingCTRL+P
Screen DumpCTRL+W
Toggle single file for copy
F1
or/$
@$
list dir without corrupting memory@$/SUBDIR/:*
list files in subdir of current dir@$18//DIR/SUBDIR/:*
list files in partition 18 in subdir of dir@$=T:
Timestamp list@$=T:*=L
long timestamp@$=T:*=<01/27/08
files less than date@$=P
partition list@$:*=P
list prg files (P=PRG, S=SEQ, U=USR, B=subdirs(branches)
@#8
change to drive 8@#10
change to drive 10@CP1
change to change to partition 1 ...etc@CD:SUBDIR
change to directory "subdirname"@CD←
change to parent dir (← is made with tilde on vice)@CD//
change to root dir
-
@MD:SUBDIR
make "subdirname" -
@MD12//DIR/:SUBDIR
create subdir in dir on part 12 -
@RD:SUBDIR
remove empty dir -
@R0:NEWNAME=OLDNAME
rename dir -
@R-H:NEWNAME
rename dir header -
@R-P:NEWNAME=OLDNAME
rename partition -
@R:newname=oldname
Rename file -
@S:file
Scratch/Delete file -
/filename
LOAD program -
£filename
LOAD program (backslash =£) -
%filename
LOAD and RUN program -
↑filename
Load and RUN program (F5
~ = ←) -
←filename
Save program (shift ~
= ←) -
'filename
Verify program
(Remember: target first, then source)
@C2//:FILENAME=1//:FILENAME
copy FILENAME from partition 1 to partition 2@C16//TEMP/:FILE=18//DIR/:FILE
copy FILE from partition 18 in DIR to partition 16, dir TEMP@C//DIR2/:TEST=//DIR1/:TEST
copy TEST from DIR1 to DIR2 of current partition
CTRL-D
to select source drive (@#8
)@Xn
to set destination (n=target drive ID)/$
to load directoryCTRL-A
to select all files or useLIST
andCTRL-W
to select individual filesRUN
to execute copy
Unfortunately, it's possible to create a directory with a slash in its name. The command
@MD:AB/CD
will in fact create a directory named AB/CD. Trying to delete it:
@RD:AB/CD
will give a 39,FILE NOT FOUND error, and wild cards won't work:
@RD:AB?CD
will give a 30,SYNTAX ERROR. The only way you can delete it is to rename it first:
@R0:ABCDE=AB/CD
@RD:ABCDE
LOAD"21/CMD/:HD-TOOLS.64",12
may give an error depending on your working dirLOAD"21//CMD/:HD-TOOLS.64",12
would be correct