Home » Personal collection » Commodore disks » disk52a2_c16_progs.d64 » move
move
This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.
Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.
Tape/disk: | Home » Personal collection » Commodore disks » disk52a2_c16_progs.d64 |
Filename: | move |
Read OK: | ✔ |
File size: | 012D bytes |
Load address: | 1001 |
Exec address: | 0000 |
Duplicates
There is 1 duplicate copy of this file in the archive:
- Personal collection » Commodore disks » disk52a2_c16_progs.d64 » move
- Personal collection » Commodore tapes » Commodore_16 » drawer_br_tape04a_c16_c60_computer_tape_1.wav » move
File contents
10 GRAPHIC 1,1 20 A=20:B=12 30 IF B<0 THEN B=0:GOTO 90 40 IF B>24 THEN B=24:GOTO 90 50 IF A<0 THEN A=0:GOTO 90 60 IF A>39 THEN A=39:GOTO 90 80 CHAR 1,A,B,"╳" 90 GETKEY A$ 100 IF A$=";" THEN CHAR 0,A,B,"X":B=B-1:GOTO 30 110 IF A$="/" THEN CHAR 0,A,B,"X":B=B+1:GOTO 30 120 IF A$="Z" THEN CHAR 0,A,B,"X":A=A-1:GOTO 30 130 IF A$="X" THEN CHAR 0,A,B,"X":A=A+1:GOTO 30 140 GOTO 90
� 1,1 A�20:B�12 . � B�0 � B�0:� 90 E( � B�24 � B�24:� 90 Z2 � A�0 � A�0:� 90 q<