Show disk directory      :    LOAD"$",8
                              LIST
Run program              :    LOAD"PRGNAME",8 
                              RUN
Autorun program          :    LOAD "FILENAME",8,1 
Run machine code         :    LOAD"FILENAME",8,1
                              SYS #####  whereas #### is a hex address
Save new file            :    SAVE"FILENAME",8 
Save existing file       :    SAVE"@:FILENAME",8
Format ("new") disk      :    OPEN15,8,15,"N:NAME,id"   whereas id (disk id) any number
Delete ("scratch") file  :    OPEN15,8,15,"S:FILENAME"
Rename file              :    OPEN15,8,15,"R:NEWNAME=OLDNAME"
Copy file                :    OPEN15,8,15,"C:COPY=ORIGINAL"
Basic to text file	 :    Open1,8,2,"FILENAME,s,w":cmd1:list
                              print#1:close1
Text file to Basic	 :    Open1,8,2,"FILENAME":poke781,1:poke812,73:sys 65478
                              Hit RUN/STOP-RESTORE
			      Close1, then save as a Basic program
Change internal drive#   :    5 INPUT"NEW DEVICE NUMBER";DV
Software change will          10 OPEN1,8,15
revert back to 8 on           20 PRINT#1,"M-W"CHR$(119)CHR$(0)CHR$(2)CHR$(DV+32)CHR$(DV+64)
reboot                        30 CLOSE1