Home » Personal collection » Acorn ADFS disks » Archimedes » IJJOBS21.ADF » Bounce/Laser3

Bounce/Laser3

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 » Acorn ADFS disks » Archimedes » IJJOBS21.ADF
Filename: Bounce/Laser3
Read OK:
File size: 1A25 bytes
Load address: FFFFFB46
Exec address: F409B759
Duplicates

There are 2 duplicate copies of this file in the archive:

File contents
   10REM LaserDarts
   20REM by Dominic Ford
   30:
   40*TAPE
   50IFPAGE<>&1000THENMODE6:PROCreloc
   60PROCass
   70MODE1:VDU 23,128,96,80,200,255,200,80,96,0,23,129,6,10,19,255,19,10,6,0,23,1,0;0;0;0;19,1,4,0,0,0,0,19,2,2,0,0,0,0,19,3,1,0,0,0,0:DIMpix%(1,7),nam$(1):sound=TRUE
   80REPEAT:PROCtitle
   90IF k$=" " THEN opp=0:PROCgame
  100IF k$="2" THEN opp=1:PROCgame
  110UNTIL k$="Q" OR k$="q"
  120MODE6:VDU23,1,1;0;0;0;0;:END
  130:
  140DEFPROCgame
  150PROCnames:CLS:GCOL0,1:MOVE0,0:MOVE320,0:PLOT85,0,192:PLOT85,320,192:MOVE1280,1024:MOVE960,1024:PLOT85,1280,832:PLOT85,960,832:MOVE0,1024:MOVE320,1024:PLOT85,0,832:PLOT85,320,832:MOVE1280,0:MOVE1280,192:PLOT85,960,0:PLOT85,960,192
  160lasa=10:lasb=10:COLOUR2:PRINTTAB(3,16);CHR$128;SPC(32);CHR$129;:stop=FALSE:scra%=2000:scrb%=2000:liva%=3:livb%=3:PROCscreen
  170COLOUR129:PRINTTAB(1,1)"Player 1";TAB(31,1)"Player 2";TAB(2,27)"Score";TAB(1,30)"Lives ";TAB(32,27)"Score";TAB(31,30)"Lives ";TAB(14,0)"LASER DARTS";TAB(10,31)"by Dominic Ford 1996";
  180PRINTTAB(5-INT(.5*LEN(nam$(0))),3)nam$(0);TAB(35-INT(.5*LEN(nam$(1))),3)nam$(1):COLOUR128:PRINTTAB(14,2)"2";TAB(12,3)"Points";TAB(22,2)"New";TAB(19,3)"Reflectors";TAB(19,28)"50";TAB(17,29)"Points"
  190REPEAT
  200PROCscore
  210PROCmove(0):xl=0:yl=3+lasa*8:dl=2:pl=1:PROCtrace:PROCscore
  220IF opp=0 THENPROCcompmove ELSEPROCmove(1)
  230IF stop=FALSE THENxl=252:yl=3+lasb*8:dl=0:pl=2:PROCtrace
  240UNTIL stop=TRUE OR scra%=0 OR scrb%=0
  250IF liva%<0 THEN scrb%=0
  260IF livb%<0 THEN scra%=0
  270IF scra%=0 AND opp=0 THEN PROCmess("Congratulations "+nam$(0)+": You Win!")
  280IF scrb%=0 AND opp=0 THEN PROCmess("I won!")
  290IF scra%=0 AND opp=1 THEN PROCmess("Player 1 Wins! Congratulations "+nam$(0)+"!")
  300IF scrb%=0 AND opp=1 THEN PROCmess("Player 2 Wins! Congratulations "+nam$(1)+"!")
  310ENDPROC
  320:
  330DEFPROCmess(m$)
  340VDU5:GCOL0,1:FORba=0TO16STEP4:MOVE640-16*LEN(m$)+ba,512+ba:PRINTm$:NEXT
  350GCOL0,2:MOVE640-16*LEN(m$),512:PRINTm$:VDU4
  360nt%=TIME+250:REPEAT UNTIL TIME>nt%
  370ENDPROC
  380:
  390DEFPROCnames
  400nam$(1)="Elk":CLS:FORnam=0TOopp
  410REPEAT
  420PRINT"Player ";nam+1;": What is your name";:INPUTnam$(nam)
  430IF LEN(nam$(nam))>10 THEN PRINTnam$(nam);" is rather a long name isn't it? Can't you shorten it?":UNTIL FALSE
  440IF LEN(nam$(nam))<1 THEN PRINT"Pardon?":UNTIL FALSE
  450UNTIL TRUE
  460NEXT
  470ENDPROC
  480:
  490DEFPROCscreen
  500FORad=&A00TO&BB8STEP4:!ad=0:NEXT:COLOUR3
  510FORy=0TO19:x=RND(20)-1:PRINTTAB(10,y+6)STRING$(20," "):PRINTTAB(x+10,y+6);
  520IFRND(2)=1THENPRINT"/":?(&A00+x+y*20)=1ELSEPRINT"\":?(&A00+x+y*20)=2
  530NEXT:FORx=0TO19:y=RND(20)-1:PRINTTAB(x+10,y+6);
  540IFRND(2)=1THENPRINT"/":?(&A00+x+y*20)=1ELSEPRINT"\":?(&A00+x+y*20)=2
  550NEXT
  560ENDPROC
  570:
  580DEFPROCmove(opm)
  590IF opm=0 THEN las=lasa:x=3 ELSE las=lasb:x=36
  600COLOUR2:REPEAT
  610A$=GET$
  620PRINTTAB(x,las+6);" "
  630IF (A$="A" OR A$="a") AND las<>0 THEN las=las-1
  640IF (A$="Z" OR A$="z") AND las<>19 THEN las=las+1
  650PRINTTAB(x,las+6);CHR$(128+opm)
  660UNTIL A$=CHR$13
  670IF sound THEN*MOTOR1
  680*MOTOR0
  690IF opm=0 THEN lasa=las ELSE lasb=las
  700ENDPROC
  710:
  720DEFPROCcompmove
  730ENDPROC
  740:
  750DEFPROCtrace
  760?&BC0=0:?&BC1=xl:?&BC2=yl:?&BC3=dl
  770CALLtraceray
  780xl=?&BC1:yl=?&BC2
  790IF xl=0AND pl=1 THEN scra%=scra%+9:ENDPROC
  800IF xl>251AND pl=2 THEN scrb%=scrb%+9:ENDPROC
  810IF xl=0THEN scrb%=scrb%-100:IFINT((832-yl)/32)=lasa THENscrb%=scrb%-900:liva%=liva%-1
  820IF xl>251THEN scra%=scra%-100:IFINT((832-yl)/32)=lasb THENscra%=scra%-900:livb%=livb%-1
  830IF yl>1570AND pl=1THEN scra%=scra%-50
  840IF yl>157AND pl=2THEN scrb%=scrb%-50
  850IF yl=0AND pl=1THEN scra%=scra%-2
  860IF yl=0AND pl=2THEN scrb%=scrb%-2
  870IF (yl=0)AND(RND(3)=2)THENPROCscreen
  880IF liva%<0 OR livb%<0 THEN stop=TRUE
  890IF scra%<0THEN scra%=sca%:IF sound THENFORb=0TO5:SOUND1,-15,0,2:SOUND1,0,0,2:NEXT
  900IF scrb%<0THEN scrb%=scb%:IF sound THENFORb=0TO5:SOUND1,-15,0,2:SOUND1,0,0,2:NEXT
  910ENDPROC
  920:
  930DEFPROCscore
  940COLOUR2:COLOUR129
  950PRINTTAB(2,28)"      ";TAB(2,28)scra%
  960PRINTTAB(7,30)"  ";TAB(7,30);liva%
  970PRINTTAB(32,28)"      ";TAB(32,28)scrb%
  980PRINTTAB(37,30)"  ";TAB(37,30);livb%
  990COLOUR128
 1000ENDPROC
 1010:
 1020DEFPROCtitle
 1030VDU19,3,1,0,0,0,0
 1040CLS:FORba=300TO1STEP-50:GCOL0,ba/50:MOVE400-ba,400:MOVE400,400+ba:PLOT85,400,400-ba:PLOT85,400+ba,400:NEXT:COLOUR131:RESTORE:FORyc=1TO5:READl$:FORxc=0TO39:IFMID$(l$,xc+1,1)="*"THENPRINTTAB(xc,yc)" "
 1050NEXT,:COLOUR128:COLOUR1:PRINTTAB(10,9)"by Dominic Ford 1996":COLOUR2:PRINTTAB(23,20)"SPACE - Human/Elk";TAB(27,22)"2 - 2 Player";TAB(27,24)"Q - Quit";TAB(27,26);"S - Sound";TAB(25,16)"Sound:";TAB(32,16);
 1060IF sound THENPRINT"On"ELSEPRINT"Off"
 1070GCOL3,2:MOVE1180,1024:MOVE400,400:PLOT85,1380,1024:REPEAT:REPEAT:k$=INKEY$(0):UNTIL INSTR(" 2QqSs",k$)<>0 AND LEN(k$)>0
 1080IFk$="S"ORk$="s"THENPROCsound:UNTILFALSE
 1090ENDPROC
 1100:
 1110DEFPROCsound
 1120IF sound THEN sound=FALSE:PRINTTAB(32,16)"Off":ENDPROC
 1130sound=TRUE:PRINTTAB(32,16)"On "
 1140ENDPROC
 1150:
 1160DATA"*   *** *** *** ***  **** *** *** ******"
 1170DATA"*   * * *   *   * *   * * * * * *  * *  "
 1180DATA"*   *** *** **  ***   * * *** ***  * ***"
 1190DATA"*   * *   * *   **    * * * * **   *   *"
 1200DATA"*** * * *** *** * *  **** * * * *  * ***"
 1210:
 1220DEFPROCass
 1230osword=&FFF1
 1240FOR pass=0TO2STEP2
 1250P%=&BC0
 1260[OPT pass
 1270.pla EQUB 0
 1280.xla EQUB 0
 1290.yla EQUB 0
 1300.dla EQUB 0
 1310.pn EQUB 0
 1320.px EQUD 0:EQUD 0:EQUD 0:EQUD 0
 1330.py EQUD 0:EQUD 0:EQUD 0:EQUD 0
 1340]:P%=&D00
 1350[OPT pass
 1360.traceray LDX#0
 1370.startlop LDAxla:STApx,X:LDAyla:STApy,X:INX:CPX#8:BNEstartlop:LDA#0:STApn
 1380.tracelop LDA#1:JSRosword:STX&70:STY&71:LDY#0:LDA(&70),Y:STA&74:LDAdla:BNEnotleft:LDAxla:SEC:SBC#2:STAxla:JMPmoved
 1390.notleft CMP#1:BNEnotup:LDAyla:CLC:ADC#2:STAyla:JMPmoved
 1400.notup CMP#2:BNEdown:LDAxla:CLC:ADC#2:STAxla:JMPmoved
 1410.down LDAyla:SEC:SBC#2:STAyla
 1420.moved JSRgetad:LDA(&70),Y:LDX&72:ANDscrbit,X:STA&73:AND#&F0:BEQnotref:LDA&73:AND#&0F:BEQnotref:JSRreflect
 1430.notref INCpn:LDApn:AND#7:STApn:TAX:LDAxla:PHA:LDAyla:PHA:LDApx,X:STAxla:LDApy,X:STAyla:JSRgetad:LDX&72:LDAscrbit,X:EOR#&FF:AND(&70),Y:STA(&70),Y:LDXpn:PLA:STAyla:STApy,X:PLA:STAxla:STApx,X:JSRgetad:LDX&72
 1440LDAscrbit,X:EOR#&FF:AND(&70),Y:STA(&70),Y:LDAscrbit,X:AND#&F0:CLC:ADC(&70),Y:STA(&70),Y:LDAxla:BEQfintr:CMP#252:BCSfintr:LDAyla:BEQfintr:CMP#158:BCSfintr
 1450.waitlop LDA#1:JSRosword:STX&70:STY&71:LDY#0:LDA(&70),Y:CMP&74:BEQwaitlop:JMPtracelop
 1460.fintr LDAxla:PHA:LDAyla:PHA:LDX#0:STXpn
 1470.finlop LDApx,X:STAxla:LDApy,X:STAyla:JSRgetad:LDX&72:LDAscrbit,X:EOR#&FF:AND(&70),Y:STA(&70),Y:INCpn:LDXpn:CPX#8:BNEfinlop:PLA:STAyla:PLA:STAxla:RTS
 1480:
 1490.reflect LDA#7:JSR&FFEE:LDAxla:SEC:SBC#&10:LSR A:LSR A:LSR A:CLC:ADC#&10:STA&80:LDAyla:SEC:SBC#8:AND#&F8:PHA:LSR A:CLC:ADC&80:STA&80:PLA:ASL A:PHA:LDA#&A:ADC#0:STA&81:PLA:ADC&80:STA&80:LDY#0:LDA(&80),Y:LDYdla:CMP#1:BEQforsl
 1500LDAback,Y:STAdla:RTS:.forsl LDAfor,Y:STAdla:RTS
 1510.back EQUB3:EQUB2:.for EQUB1:EQUB0:EQUB3:EQUB2
 1520:
 1530.getad LDAxla:AND#&F8:STA&72:CLC:ADC#&40:STA&70:LDA#0:ADC#&3F:STA&71:LDA&70:CLC:ADC&72:STA&70:LDA&71:ADC#0:STA&71:LDAyla:AND#&F8:ASL A:STA&72:LDA#0:ROL A:STA&73:ASL&72:ROL&73:ASL&72:ROL&73:ASL&72:ROL&73
 1540LDA&70:CLC:ADC&72:STA&70:LDA&71:ADC&73
 1550STA&71:ASL&72:ROL&73:ASL&72:ROL&73:LDA&70:CLC:ADC&72:STA&70:LDA&71:ADC&73:STA&71:LDAyla:AND#7:ADC&70:STA&70:LDA&71:ADC#0:STA&71:LDAxla:AND#4:ASL A:ADC&70:STA&70:LDAxla:AND#3:STA&72:LDY#0:RTS
 1560.scrbit EQUB&88:EQUB&44:EQUB&22:EQUB&11
 1570]:NEXT
 1580ENDPROC
 1590:
 1600DEFPROCreloc
 1610HIMEM=&5800
 1620FOR pass=0 TO 2 STEP 2
 1630P%=&C00
 1640[OPTpass
 1650    LDY#0:STY&70:STY&72:LDA#&10:SEC:SBC&18:STA&74:LDA&18:CMP#&10:BCCad
 1660.sb STA&71:LDA#&10:STA&73
 1670.m1 LDA(&70),Y:STA(&72),Y:INY:BNEm1:INC&71:INC&73:LDX&71:DEX:CPX&03:BCCm1:BCSem
 1680.ad LDA&03:STA&71:CLC:ADC&74:STA&73:LDA#0:LDY&02
 1690.m2 LDA(&70),Y:STA(&72),Y:DEY:CPY#&FF:BNEm2:DEC&71:DEC&73:LDA&73:CMP#&16:BCSm2
 1700.em LDA&13:CLC:ADC&74:STA&13:STA&01:LDA#&10:STA&18:RTS
 1710]
 1720NEXT
 1730VDU 21
 1740OSCLI"KEY 0""CALL&C00|MRUN|F|M""":OSCLI"FX 153,0,128"
 1750END
 1760ENDPROC

� LaserDarts
� by Dominic Ford
:
(	*TAPE
2�<>&1000��6:�reloc
<�ass
F��1:� 23,128,96,80,200,255,200,80,96,0,23,129,6,10,19,255,19,10,6,0,23,1,0;0;0;0;19,1,4,0,0,0,0,19,2,2,0,0,0,0,19,3,1,0,0,0,0:�pix%(1,7),nam$(1):sound=�
P�:�title
Z� k$=" " � opp=0:�game
d� k$="2" � opp=1:�game
n� k$="Q" � k$="q"
x�6:�23,1,1;0;0;0;0;:�
�:
�
��game
���names:�:�0,1:�0,0:�320,0:�85,0,192:�85,320,192:�1280,1024:�960,1024:�85,1280,832:�85,960,832:�0,1024:�320,1024:�85,0,832:�85,320,832:�1280,0:�1280,192:�85,960,0:�85,960,192
�dlasa=10:lasb=10:�2:�3,16);�128;�(32);�129;:stop=�:scra%=2000:scrb%=2000:liva%=3:livb%=3:�screen
���129:�1,1)"Player 1";�31,1)"Player 2";�2,27)"Score";�1,30)"Lives ";�32,27)"Score";�31,30)"Lives ";�14,0)"LASER DARTS";�10,31)"by Dominic Ford 1996";
���5-�(.5*�(nam$(0))),3)nam$(0);�35-�(.5*�(nam$(1))),3)nam$(1):�128:�14,2)"2";�12,3)"Points";�22,2)"New";�19,3)"Reflectors";�19,28)"50";�17,29)"Points"
��
�
�score
�5�move(0):xl=0:yl=3+lasa*8:dl=2:pl=1:�trace:�score
� � opp=0 ��compmove ��move(1)
�1� stop=� �xl=252:yl=3+lasb*8:dl=0:pl=2:�trace
� � stop=� � scra%=0 � scrb%=0
�� liva%<0 � scrb%=0
� livb%<0 � scra%=0
F� scra%=0 � opp=0 � �mess("Congratulations "+nam$(0)+": You Win!")
'� scrb%=0 � opp=0 � �mess("I won!")
"L� scra%=0 � opp=1 � �mess("Player 1 Wins! Congratulations "+nam$(0)+"!")
,L� scrb%=0 � opp=1 � �mess("Player 2 Wins! Congratulations "+nam$(1)+"!")
6�
@:
J��mess(m$)
T4�5:�0,1:�ba=0�16�4:�640-16*�(m$)+ba,512+ba:�m$:�
^!�0,2:�640-16*�(m$),512:�m$:�4
hnt%=�+250:� � �>nt%
r�
|:
���names
�nam$(1)="Elk":�:�nam=0�opp
��
�6�"Player ";nam+1;": What is your name";:�nam$(nam)
�_� �(nam$(nam))>10 � �nam$(nam);" is rather a long name isn't it? Can't you shorten it?":� �
�%� �(nam$(nam))<1 � �"Pardon?":� �
�� �
��
��
�:
���screen
��ad=&A00�&BB8�4:!ad=0:�:�3
�4�y=0�19:x=�(20)-1:�10,y+6)�20," "):�x+10,y+6);
7�(2)=1��"/":?(&A00+x+y*20)=1��"\":?(&A00+x+y*20)=2
$�:�x=0�19:y=�(20)-1:�x+10,y+6);
7�(2)=1��"/":?(&A00+x+y*20)=1��"\":?(&A00+x+y*20)=2
&�
0�
::
D��move(opm)
N*� opm=0 � las=lasa:x=3 � las=lasb:x=36
X�2:�
bA$=�
l�x,las+6);" "
v,� (A$="A" � A$="a") � las<>0 � las=las-1
�-� (A$="Z" � A$="z") � las<>19 � las=las+1
��x,las+6);�(128+opm)
�� A$=�13
�� sound �*MOTOR1
�*MOTOR0
�!� opm=0 � lasa=las � lasb=las
��
�:
���compmove
��
�:
���trace
�&?&BC0=0:?&BC1=xl:?&BC2=yl:?&BC3=dl

�traceray
xl=?&BC1:yl=?&BC2
"� xl=0� pl=1 � scra%=scra%+9:�
 $� xl>251� pl=2 � scrb%=scrb%+9:�
*O� xl=0� scrb%=scrb%-100:�((832-yl)/32)=lasa �scrb%=scrb%-900:liva%=liva%-1
4Q� xl>251� scra%=scra%-100:�((832-yl)/32)=lasb �scra%=scra%-900:livb%=livb%-1
>#� yl>1570� pl=1� scra%=scra%-50
H"� yl>157� pl=2� scrb%=scrb%-50
R� yl=0� pl=1� scra%=scra%-2
\� yl=0� pl=2� scrb%=scrb%-2
f� (yl=0)�(�(3)=2)��screen
p � liva%<0 � livb%<0 � stop=�
z?� scra%<0� scra%=sca%:� sound ��b=0�5:�1,-15,0,2:�1,0,0,2:�
�?� scrb%<0� scrb%=scb%:� sound ��b=0�5:�1,-15,0,2:�1,0,0,2:�
��
�:
���score
��2:�129
��2,28)"      ";�2,28)scra%
��7,30)"  ";�7,30);liva%
�!�32,28)"      ";�32,28)scrb%
��37,30)"  ";�37,30);livb%
��128
��
�:
���title
�19,3,1,0,0,0,0
��:�ba=300�1�-50:�0,ba/50:�400-ba,400:�400,400+ba:�85,400,400-ba:�85,400+ba,400:�:�131:�:�yc=1�5:�l$:�xc=0�39:�l$,xc+1,1)="*"��xc,yc)" "
��,:�128:�1:�10,9)"by Dominic Ford 1996":�2:�23,20)"SPACE - Human/Elk";�27,22)"2 - 2 Player";�27,24)"Q - Quit";�27,26);"S - Sound";�25,16)"Sound:";�32,16);
$� sound ��"On"��"Off"
.S�3,2:�1180,1024:�400,400:�85,1380,1024:�:�:k$=�(0):� �" 2QqSs",k$)<>0 � �(k$)>0
8�k$="S"�k$="s"��sound:��
B�
L:
V��sound
`%� sound � sound=�:�32,16)"Off":�
jsound=�:�32,16)"On "
t�
~:
�/�"*   *** *** *** ***  **** *** *** ******"
�/�"*   * * *   *   * *   * * * * * *  * *  "
�/�"*   *** *** **  ***   * * *** ***  * ***"
�/�"*   * *   * *   **    * * * * **   *   *"
�/�"*** * * *** *** * *  **** * * * *  * ***"
�:
�	��ass
�osword=&FFF1
�� pass=0�2�2
�P%=&BC0
�
[OPT pass
�.pla EQUB 0
.xla EQUB 0

.yla EQUB 0
.dla EQUB 0
.pn EQUB 0
(#.px EQUD 0:EQUD 0:EQUD 0:EQUD 0
2#.py EQUD 0:EQUD 0:EQUD 0:EQUD 0
<
]:P%=&D00
F
[OPT pass
P.traceray LDX#0
ZM.startlop LDAxla:STApx,X:LDAyla:STApy,X:INX:CPX#8:BNEstartlop:LDA#0:STApn
dv.tracelop LDA#1:JSRosword:STX&70:STY&71:LDY#0:LDA(&70),Y:STA&74:LDAdla:BNEnotleft:LDAxla:SEC:SBC#2:STAxla:JMPmoved
n<.notleft CMP#1:BNEnotup:LDAyla:CLC:ADC#2:STAyla:JMPmoved
x9.notup CMP#2:BNEdown:LDAxla:CLC:ADC#2:STAxla:JMPmoved
�!.down LDAyla:SEC:SBC#2:STAyla
�h.moved JSRgetad:LDA(&70),Y:LDX&72:�scrbit,X:STA&73:�#&F0:BEQnotref:LDA&73:�#&0F:BEQnotref:JSRreflect
��.notref INCpn:LDApn:�#7:STApn:TAX:LDAxla:PHA:LDAyla:PHA:LDApx,X:STAxla:LDApy,X:STAyla:JSRgetad:LDX&72:LDAscrbit,X:�#&FF:�(&70),Y:STA(&70),Y:LDXpn:PLA:STAyla:STApy,X:PLA:STAxla:STApx,X:JSRgetad:LDX&72
��LDAscrbit,X:�#&FF:�(&70),Y:STA(&70),Y:LDAscrbit,X:�#&F0:CLC:ADC(&70),Y:STA(&70),Y:LDAxla:BEQfintr:CMP#252:BCSfintr:LDAyla:BEQfintr:CMP#158:BCSfintr
�Y.waitlop LDA#1:JSRosword:STX&70:STY&71:LDY#0:LDA(&70),Y:CMP&74:BEQwaitlop:JMPtracelop
�,.fintr LDAxla:PHA:LDAyla:PHA:LDX#0:STXpn
��.finlop LDApx,X:STAxla:LDApy,X:STAyla:JSRgetad:LDX&72:LDAscrbit,X:�#&FF:�(&70),Y:STA(&70),Y:INCpn:LDXpn:CPX#8:BNEfinlop:PLA:STAyla:PLA:STAxla:RTS
�:
��.reflect LDA#7:JSR&FFEE:LDAxla:SEC:SBC#&10:LSR A:LSR A:LSR A:CLC:ADC#&10:STA&80:LDAyla:SEC:SBC#8:�#&F8:PHA:LSR A:CLC:ADC&80:STA&80:PLA:ASL A:PHA:LDA#&A:ADC#0:STA&81:PLA:ADC&80:STA&80:LDY#0:LDA(&80),Y:LDYdla:CMP#1:BEQforsl
�3LDAback,Y:STAdla:RTS:.forsl LDAfor,Y:STAdla:RTS
�2.back EQUB3:EQUB2:.for EQUB1:EQUB0:EQUB3:EQUB2
�:
��.getad LDAxla:�#&F8:STA&72:CLC:ADC#&40:STA&70:LDA#0:ADC#&3F:STA&71:LDA&70:CLC:ADC&72:STA&70:LDA&71:ADC#0:STA&71:LDAyla:�#&F8:ASL A:STA&72:LDA#0:ROL A:STA&73:ASL&72:ROL&73:ASL&72:ROL&73:ASL&72:ROL&73
*LDA&70:CLC:ADC&72:STA&70:LDA&71:ADC&73
�STA&71:ASL&72:ROL&73:ASL&72:ROL&73:LDA&70:CLC:ADC&72:STA&70:LDA&71:ADC&73:STA&71:LDAyla:�#7:ADC&70:STA&70:LDA&71:ADC#0:STA&71:LDAxla:�#4:ASL A:ADC&70:STA&70:LDAxla:�#3:STA&72:LDY#0:RTS
+.scrbit EQUB&88:EQUB&44:EQUB&22:EQUB&11
"]:�
,�
6:
@��reloc
J�=&5800
T� pass=0 � 2 � 2
^P%=&C00
h[OPTpass
rJ    LDY#0:STY&70:STY&72:LDA#&10:SEC:SBC&18:STA&74:LDA&18:CMP#&10:BCCad
|.sb STA&71:LDA#&10:STA&73
�S.m1 LDA(&70),Y:STA(&72),Y:INY:BNEm1:INC&71:INC&73:LDX&71:DEX:CPX&03:BCCm1:BCSem
�4.ad LDA&03:STA&71:CLC:ADC&74:STA&73:LDA#0:LDY&02
�R.m2 LDA(&70),Y:STA(&72),Y:DEY:CPY#&FF:BNEm2:DEC&71:DEC&73:LDA&73:CMP#&16:BCSm2
�:.em LDA&13:CLC:ADC&74:STA&13:STA&01:LDA#&10:STA&18:RTS
�]
��
�� 21
�1�"KEY 0""CALL&C00|MRUN|F|M""":�"FX 153,0,128"
��
��
�
00000000  0d 00 0a 10 f4 20 4c 61  73 65 72 44 61 72 74 73  |..... LaserDarts|
00000010  0d 00 14 15 f4 20 62 79  20 44 6f 6d 69 6e 69 63  |..... by Dominic|
00000020  20 46 6f 72 64 0d 00 1e  05 3a 0d 00 28 09 2a 54  | Ford....:..(.*T|
00000030  41 50 45 0d 00 32 17 e7  90 3c 3e 26 31 30 30 30  |APE..2...<>&1000|
00000040  8c eb 36 3a f2 72 65 6c  6f 63 0d 00 3c 08 f2 61  |..6:.reloc..<..a|
00000050  73 73 0d 00 46 9b eb 31  3a ef 20 32 33 2c 31 32  |ss..F..1:. 23,12|
00000060  38 2c 39 36 2c 38 30 2c  32 30 30 2c 32 35 35 2c  |8,96,80,200,255,|
00000070  32 30 30 2c 38 30 2c 39  36 2c 30 2c 32 33 2c 31  |200,80,96,0,23,1|
00000080  32 39 2c 36 2c 31 30 2c  31 39 2c 32 35 35 2c 31  |29,6,10,19,255,1|
00000090  39 2c 31 30 2c 36 2c 30  2c 32 33 2c 31 2c 30 3b  |9,10,6,0,23,1,0;|
000000a0  30 3b 30 3b 30 3b 31 39  2c 31 2c 34 2c 30 2c 30  |0;0;0;19,1,4,0,0|
000000b0  2c 30 2c 30 2c 31 39 2c  32 2c 32 2c 30 2c 30 2c  |,0,0,19,2,2,0,0,|
000000c0  30 2c 30 2c 31 39 2c 33  2c 31 2c 30 2c 30 2c 30  |0,0,19,3,1,0,0,0|
000000d0  2c 30 3a de 70 69 78 25  28 31 2c 37 29 2c 6e 61  |,0:.pix%(1,7),na|
000000e0  6d 24 28 31 29 3a 73 6f  75 6e 64 3d b9 0d 00 50  |m$(1):sound=...P|
000000f0  0c f5 3a f2 74 69 74 6c  65 0d 00 5a 1a e7 20 6b  |..:.title..Z.. k|
00000100  24 3d 22 20 22 20 8c 20  6f 70 70 3d 30 3a f2 67  |$=" " . opp=0:.g|
00000110  61 6d 65 0d 00 64 1a e7  20 6b 24 3d 22 32 22 20  |ame..d.. k$="2" |
00000120  8c 20 6f 70 70 3d 31 3a  f2 67 61 6d 65 0d 00 6e  |. opp=1:.game..n|
00000130  15 fd 20 6b 24 3d 22 51  22 20 84 20 6b 24 3d 22  |.. k$="Q" . k$="|
00000140  71 22 0d 00 78 19 eb 36  3a ef 32 33 2c 31 2c 31  |q"..x..6:.23,1,1|
00000150  3b 30 3b 30 3b 30 3b 30  3b 3a e0 0d 00 82 05 3a  |;0;0;0;0;:.....:|
00000160  0d 00 8c 0a dd f2 67 61  6d 65 0d 00 96 b1 f2 6e  |......game.....n|
00000170  61 6d 65 73 3a db 3a e6  30 2c 31 3a ec 30 2c 30  |ames:.:.0,1:.0,0|
00000180  3a ec 33 32 30 2c 30 3a  f0 38 35 2c 30 2c 31 39  |:.320,0:.85,0,19|
00000190  32 3a f0 38 35 2c 33 32  30 2c 31 39 32 3a ec 31  |2:.85,320,192:.1|
000001a0  32 38 30 2c 31 30 32 34  3a ec 39 36 30 2c 31 30  |280,1024:.960,10|
000001b0  32 34 3a f0 38 35 2c 31  32 38 30 2c 38 33 32 3a  |24:.85,1280,832:|
000001c0  f0 38 35 2c 39 36 30 2c  38 33 32 3a ec 30 2c 31  |.85,960,832:.0,1|
000001d0  30 32 34 3a ec 33 32 30  2c 31 30 32 34 3a f0 38  |024:.320,1024:.8|
000001e0  35 2c 30 2c 38 33 32 3a  f0 38 35 2c 33 32 30 2c  |5,0,832:.85,320,|
000001f0  38 33 32 3a ec 31 32 38  30 2c 30 3a ec 31 32 38  |832:.1280,0:.128|
00000200  30 2c 31 39 32 3a f0 38  35 2c 39 36 30 2c 30 3a  |0,192:.85,960,0:|
00000210  f0 38 35 2c 39 36 30 2c  31 39 32 0d 00 a0 64 6c  |.85,960,192...dl|
00000220  61 73 61 3d 31 30 3a 6c  61 73 62 3d 31 30 3a fb  |asa=10:lasb=10:.|
00000230  32 3a f1 8a 33 2c 31 36  29 3b bd 31 32 38 3b 89  |2:..3,16);.128;.|
00000240  28 33 32 29 3b bd 31 32  39 3b 3a 73 74 6f 70 3d  |(32);.129;:stop=|
00000250  a3 3a 73 63 72 61 25 3d  32 30 30 30 3a 73 63 72  |.:scra%=2000:scr|
00000260  62 25 3d 32 30 30 30 3a  6c 69 76 61 25 3d 33 3a  |b%=2000:liva%=3:|
00000270  6c 69 76 62 25 3d 33 3a  f2 73 63 72 65 65 6e 0d  |livb%=3:.screen.|
00000280  00 aa 99 fb 31 32 39 3a  f1 8a 31 2c 31 29 22 50  |....129:..1,1)"P|
00000290  6c 61 79 65 72 20 31 22  3b 8a 33 31 2c 31 29 22  |layer 1";.31,1)"|
000002a0  50 6c 61 79 65 72 20 32  22 3b 8a 32 2c 32 37 29  |Player 2";.2,27)|
000002b0  22 53 63 6f 72 65 22 3b  8a 31 2c 33 30 29 22 4c  |"Score";.1,30)"L|
000002c0  69 76 65 73 20 22 3b 8a  33 32 2c 32 37 29 22 53  |ives ";.32,27)"S|
000002d0  63 6f 72 65 22 3b 8a 33  31 2c 33 30 29 22 4c 69  |core";.31,30)"Li|
000002e0  76 65 73 20 22 3b 8a 31  34 2c 30 29 22 4c 41 53  |ves ";.14,0)"LAS|
000002f0  45 52 20 44 41 52 54 53  22 3b 8a 31 30 2c 33 31  |ER DARTS";.10,31|
00000300  29 22 62 79 20 44 6f 6d  69 6e 69 63 20 46 6f 72  |)"by Dominic For|
00000310  64 20 31 39 39 36 22 3b  0d 00 b4 9b f1 8a 35 2d  |d 1996";......5-|
00000320  a8 28 2e 35 2a a9 28 6e  61 6d 24 28 30 29 29 29  |.(.5*.(nam$(0)))|
00000330  2c 33 29 6e 61 6d 24 28  30 29 3b 8a 33 35 2d a8  |,3)nam$(0);.35-.|
00000340  28 2e 35 2a a9 28 6e 61  6d 24 28 31 29 29 29 2c  |(.5*.(nam$(1))),|
00000350  33 29 6e 61 6d 24 28 31  29 3a fb 31 32 38 3a f1  |3)nam$(1):.128:.|
00000360  8a 31 34 2c 32 29 22 32  22 3b 8a 31 32 2c 33 29  |.14,2)"2";.12,3)|
00000370  22 50 6f 69 6e 74 73 22  3b 8a 32 32 2c 32 29 22  |"Points";.22,2)"|
00000380  4e 65 77 22 3b 8a 31 39  2c 33 29 22 52 65 66 6c  |New";.19,3)"Refl|
00000390  65 63 74 6f 72 73 22 3b  8a 31 39 2c 32 38 29 22  |ectors";.19,28)"|
000003a0  35 30 22 3b 8a 31 37 2c  32 39 29 22 50 6f 69 6e  |50";.17,29)"Poin|
000003b0  74 73 22 0d 00 be 05 f5  0d 00 c8 0a f2 73 63 6f  |ts"..........sco|
000003c0  72 65 0d 00 d2 35 f2 6d  6f 76 65 28 30 29 3a 78  |re...5.move(0):x|
000003d0  6c 3d 30 3a 79 6c 3d 33  2b 6c 61 73 61 2a 38 3a  |l=0:yl=3+lasa*8:|
000003e0  64 6c 3d 32 3a 70 6c 3d  31 3a f2 74 72 61 63 65  |dl=2:pl=1:.trace|
000003f0  3a f2 73 63 6f 72 65 0d  00 dc 20 e7 20 6f 70 70  |:.score... . opp|
00000400  3d 30 20 8c f2 63 6f 6d  70 6d 6f 76 65 20 8b f2  |=0 ..compmove ..|
00000410  6d 6f 76 65 28 31 29 0d  00 e6 31 e7 20 73 74 6f  |move(1)...1. sto|
00000420  70 3d a3 20 8c 78 6c 3d  32 35 32 3a 79 6c 3d 33  |p=. .xl=252:yl=3|
00000430  2b 6c 61 73 62 2a 38 3a  64 6c 3d 30 3a 70 6c 3d  |+lasb*8:dl=0:pl=|
00000440  32 3a f2 74 72 61 63 65  0d 00 f0 20 fd 20 73 74  |2:.trace... . st|
00000450  6f 70 3d b9 20 84 20 73  63 72 61 25 3d 30 20 84  |op=. . scra%=0 .|
00000460  20 73 63 72 62 25 3d 30  0d 00 fa 17 e7 20 6c 69  | scrb%=0..... li|
00000470  76 61 25 3c 30 20 8c 20  73 63 72 62 25 3d 30 0d  |va%<0 . scrb%=0.|
00000480  01 04 17 e7 20 6c 69 76  62 25 3c 30 20 8c 20 73  |.... livb%<0 . s|
00000490  63 72 61 25 3d 30 0d 01  0e 46 e7 20 73 63 72 61  |cra%=0...F. scra|
000004a0  25 3d 30 20 80 20 6f 70  70 3d 30 20 8c 20 f2 6d  |%=0 . opp=0 . .m|
000004b0  65 73 73 28 22 43 6f 6e  67 72 61 74 75 6c 61 74  |ess("Congratulat|
000004c0  69 6f 6e 73 20 22 2b 6e  61 6d 24 28 30 29 2b 22  |ions "+nam$(0)+"|
000004d0  3a 20 59 6f 75 20 57 69  6e 21 22 29 0d 01 18 27  |: You Win!")...'|
000004e0  e7 20 73 63 72 62 25 3d  30 20 80 20 6f 70 70 3d  |. scrb%=0 . opp=|
000004f0  30 20 8c 20 f2 6d 65 73  73 28 22 49 20 77 6f 6e  |0 . .mess("I won|
00000500  21 22 29 0d 01 22 4c e7  20 73 63 72 61 25 3d 30  |!").."L. scra%=0|
00000510  20 80 20 6f 70 70 3d 31  20 8c 20 f2 6d 65 73 73  | . opp=1 . .mess|
00000520  28 22 50 6c 61 79 65 72  20 31 20 57 69 6e 73 21  |("Player 1 Wins!|
00000530  20 43 6f 6e 67 72 61 74  75 6c 61 74 69 6f 6e 73  | Congratulations|
00000540  20 22 2b 6e 61 6d 24 28  30 29 2b 22 21 22 29 0d  | "+nam$(0)+"!").|
00000550  01 2c 4c e7 20 73 63 72  62 25 3d 30 20 80 20 6f  |.,L. scrb%=0 . o|
00000560  70 70 3d 31 20 8c 20 f2  6d 65 73 73 28 22 50 6c  |pp=1 . .mess("Pl|
00000570  61 79 65 72 20 32 20 57  69 6e 73 21 20 43 6f 6e  |ayer 2 Wins! Con|
00000580  67 72 61 74 75 6c 61 74  69 6f 6e 73 20 22 2b 6e  |gratulations "+n|
00000590  61 6d 24 28 31 29 2b 22  21 22 29 0d 01 36 05 e1  |am$(1)+"!")..6..|
000005a0  0d 01 40 05 3a 0d 01 4a  0e dd f2 6d 65 73 73 28  |..@.:..J...mess(|
000005b0  6d 24 29 0d 01 54 34 ef  35 3a e6 30 2c 31 3a e3  |m$)..T4.5:.0,1:.|
000005c0  62 61 3d 30 b8 31 36 88  34 3a ec 36 34 30 2d 31  |ba=0.16.4:.640-1|
000005d0  36 2a a9 28 6d 24 29 2b  62 61 2c 35 31 32 2b 62  |6*.(m$)+ba,512+b|
000005e0  61 3a f1 6d 24 3a ed 0d  01 5e 21 e6 30 2c 32 3a  |a:.m$:...^!.0,2:|
000005f0  ec 36 34 30 2d 31 36 2a  a9 28 6d 24 29 2c 35 31  |.640-16*.(m$),51|
00000600  32 3a f1 6d 24 3a ef 34  0d 01 68 17 6e 74 25 3d  |2:.m$:.4..h.nt%=|
00000610  91 2b 32 35 30 3a f5 20  fd 20 91 3e 6e 74 25 0d  |.+250:. . .>nt%.|
00000620  01 72 05 e1 0d 01 7c 05  3a 0d 01 86 0b dd f2 6e  |.r....|.:......n|
00000630  61 6d 65 73 0d 01 90 1e  6e 61 6d 24 28 31 29 3d  |ames....nam$(1)=|
00000640  22 45 6c 6b 22 3a db 3a  e3 6e 61 6d 3d 30 b8 6f  |"Elk":.:.nam=0.o|
00000650  70 70 0d 01 9a 05 f5 0d  01 a4 36 f1 22 50 6c 61  |pp........6."Pla|
00000660  79 65 72 20 22 3b 6e 61  6d 2b 31 3b 22 3a 20 57  |yer ";nam+1;": W|
00000670  68 61 74 20 69 73 20 79  6f 75 72 20 6e 61 6d 65  |hat is your name|
00000680  22 3b 3a e8 6e 61 6d 24  28 6e 61 6d 29 0d 01 ae  |";:.nam$(nam)...|
00000690  5f e7 20 a9 28 6e 61 6d  24 28 6e 61 6d 29 29 3e  |_. .(nam$(nam))>|
000006a0  31 30 20 8c 20 f1 6e 61  6d 24 28 6e 61 6d 29 3b  |10 . .nam$(nam);|
000006b0  22 20 69 73 20 72 61 74  68 65 72 20 61 20 6c 6f  |" is rather a lo|
000006c0  6e 67 20 6e 61 6d 65 20  69 73 6e 27 74 20 69 74  |ng name isn't it|
000006d0  3f 20 43 61 6e 27 74 20  79 6f 75 20 73 68 6f 72  |? Can't you shor|
000006e0  74 65 6e 20 69 74 3f 22  3a fd 20 a3 0d 01 b8 25  |ten it?":. ....%|
000006f0  e7 20 a9 28 6e 61 6d 24  28 6e 61 6d 29 29 3c 31  |. .(nam$(nam))<1|
00000700  20 8c 20 f1 22 50 61 72  64 6f 6e 3f 22 3a fd 20  | . ."Pardon?":. |
00000710  a3 0d 01 c2 07 fd 20 b9  0d 01 cc 05 ed 0d 01 d6  |...... .........|
00000720  05 e1 0d 01 e0 05 3a 0d  01 ea 0c dd f2 73 63 72  |......:......scr|
00000730  65 65 6e 0d 01 f4 1e e3  61 64 3d 26 41 30 30 b8  |een.....ad=&A00.|
00000740  26 42 42 38 88 34 3a 21  61 64 3d 30 3a ed 3a fb  |&BB8.4:!ad=0:.:.|
00000750  33 0d 01 fe 34 e3 79 3d  30 b8 31 39 3a 78 3d b3  |3...4.y=0.19:x=.|
00000760  28 32 30 29 2d 31 3a f1  8a 31 30 2c 79 2b 36 29  |(20)-1:..10,y+6)|
00000770  c4 32 30 2c 22 20 22 29  3a f1 8a 78 2b 31 30 2c  |.20," "):..x+10,|
00000780  79 2b 36 29 3b 0d 02 08  37 e7 b3 28 32 29 3d 31  |y+6);...7..(2)=1|
00000790  8c f1 22 2f 22 3a 3f 28  26 41 30 30 2b 78 2b 79  |.."/":?(&A00+x+y|
000007a0  2a 32 30 29 3d 31 8b f1  22 5c 22 3a 3f 28 26 41  |*20)=1.."\":?(&A|
000007b0  30 30 2b 78 2b 79 2a 32  30 29 3d 32 0d 02 12 24  |00+x+y*20)=2...$|
000007c0  ed 3a e3 78 3d 30 b8 31  39 3a 79 3d b3 28 32 30  |.:.x=0.19:y=.(20|
000007d0  29 2d 31 3a f1 8a 78 2b  31 30 2c 79 2b 36 29 3b  |)-1:..x+10,y+6);|
000007e0  0d 02 1c 37 e7 b3 28 32  29 3d 31 8c f1 22 2f 22  |...7..(2)=1.."/"|
000007f0  3a 3f 28 26 41 30 30 2b  78 2b 79 2a 32 30 29 3d  |:?(&A00+x+y*20)=|
00000800  31 8b f1 22 5c 22 3a 3f  28 26 41 30 30 2b 78 2b  |1.."\":?(&A00+x+|
00000810  79 2a 32 30 29 3d 32 0d  02 26 05 ed 0d 02 30 05  |y*20)=2..&....0.|
00000820  e1 0d 02 3a 05 3a 0d 02  44 0f dd f2 6d 6f 76 65  |...:.:..D...move|
00000830  28 6f 70 6d 29 0d 02 4e  2a e7 20 6f 70 6d 3d 30  |(opm)..N*. opm=0|
00000840  20 8c 20 6c 61 73 3d 6c  61 73 61 3a 78 3d 33 20  | . las=lasa:x=3 |
00000850  8b 20 6c 61 73 3d 6c 61  73 62 3a 78 3d 33 36 0d  |. las=lasb:x=36.|
00000860  02 58 08 fb 32 3a f5 0d  02 62 08 41 24 3d be 0d  |.X..2:...b.A$=..|
00000870  02 6c 12 f1 8a 78 2c 6c  61 73 2b 36 29 3b 22 20  |.l...x,las+6);" |
00000880  22 0d 02 76 2c e7 20 28  41 24 3d 22 41 22 20 84  |"..v,. (A$="A" .|
00000890  20 41 24 3d 22 61 22 29  20 80 20 6c 61 73 3c 3e  | A$="a") . las<>|
000008a0  30 20 8c 20 6c 61 73 3d  6c 61 73 2d 31 0d 02 80  |0 . las=las-1...|
000008b0  2d e7 20 28 41 24 3d 22  5a 22 20 84 20 41 24 3d  |-. (A$="Z" . A$=|
000008c0  22 7a 22 29 20 80 20 6c  61 73 3c 3e 31 39 20 8c  |"z") . las<>19 .|
000008d0  20 6c 61 73 3d 6c 61 73  2b 31 0d 02 8a 19 f1 8a  | las=las+1......|
000008e0  78 2c 6c 61 73 2b 36 29  3b bd 28 31 32 38 2b 6f  |x,las+6);.(128+o|
000008f0  70 6d 29 0d 02 94 0c fd  20 41 24 3d bd 31 33 0d  |pm)..... A$=.13.|
00000900  02 9e 14 e7 20 73 6f 75  6e 64 20 8c 2a 4d 4f 54  |.... sound .*MOT|
00000910  4f 52 31 0d 02 a8 0b 2a  4d 4f 54 4f 52 30 0d 02  |OR1....*MOTOR0..|
00000920  b2 21 e7 20 6f 70 6d 3d  30 20 8c 20 6c 61 73 61  |.!. opm=0 . lasa|
00000930  3d 6c 61 73 20 8b 20 6c  61 73 62 3d 6c 61 73 0d  |=las . lasb=las.|
00000940  02 bc 05 e1 0d 02 c6 05  3a 0d 02 d0 0e dd f2 63  |........:......c|
00000950  6f 6d 70 6d 6f 76 65 0d  02 da 05 e1 0d 02 e4 05  |ompmove.........|
00000960  3a 0d 02 ee 0b dd f2 74  72 61 63 65 0d 02 f8 26  |:......trace...&|
00000970  3f 26 42 43 30 3d 30 3a  3f 26 42 43 31 3d 78 6c  |?&BC0=0:?&BC1=xl|
00000980  3a 3f 26 42 43 32 3d 79  6c 3a 3f 26 42 43 33 3d  |:?&BC2=yl:?&BC3=|
00000990  64 6c 0d 03 02 0d d6 74  72 61 63 65 72 61 79 0d  |dl.....traceray.|
000009a0  03 0c 15 78 6c 3d 3f 26  42 43 31 3a 79 6c 3d 3f  |...xl=?&BC1:yl=?|
000009b0  26 42 43 32 0d 03 16 22  e7 20 78 6c 3d 30 80 20  |&BC2...". xl=0. |
000009c0  70 6c 3d 31 20 8c 20 73  63 72 61 25 3d 73 63 72  |pl=1 . scra%=scr|
000009d0  61 25 2b 39 3a e1 0d 03  20 24 e7 20 78 6c 3e 32  |a%+9:... $. xl>2|
000009e0  35 31 80 20 70 6c 3d 32  20 8c 20 73 63 72 62 25  |51. pl=2 . scrb%|
000009f0  3d 73 63 72 62 25 2b 39  3a e1 0d 03 2a 4f e7 20  |=scrb%+9:...*O. |
00000a00  78 6c 3d 30 8c 20 73 63  72 62 25 3d 73 63 72 62  |xl=0. scrb%=scrb|
00000a10  25 2d 31 30 30 3a e7 a8  28 28 38 33 32 2d 79 6c  |%-100:..((832-yl|
00000a20  29 2f 33 32 29 3d 6c 61  73 61 20 8c 73 63 72 62  |)/32)=lasa .scrb|
00000a30  25 3d 73 63 72 62 25 2d  39 30 30 3a 6c 69 76 61  |%=scrb%-900:liva|
00000a40  25 3d 6c 69 76 61 25 2d  31 0d 03 34 51 e7 20 78  |%=liva%-1..4Q. x|
00000a50  6c 3e 32 35 31 8c 20 73  63 72 61 25 3d 73 63 72  |l>251. scra%=scr|
00000a60  61 25 2d 31 30 30 3a e7  a8 28 28 38 33 32 2d 79  |a%-100:..((832-y|
00000a70  6c 29 2f 33 32 29 3d 6c  61 73 62 20 8c 73 63 72  |l)/32)=lasb .scr|
00000a80  61 25 3d 73 63 72 61 25  2d 39 30 30 3a 6c 69 76  |a%=scra%-900:liv|
00000a90  62 25 3d 6c 69 76 62 25  2d 31 0d 03 3e 23 e7 20  |b%=livb%-1..>#. |
00000aa0  79 6c 3e 31 35 37 30 80  20 70 6c 3d 31 8c 20 73  |yl>1570. pl=1. s|
00000ab0  63 72 61 25 3d 73 63 72  61 25 2d 35 30 0d 03 48  |cra%=scra%-50..H|
00000ac0  22 e7 20 79 6c 3e 31 35  37 80 20 70 6c 3d 32 8c  |". yl>157. pl=2.|
00000ad0  20 73 63 72 62 25 3d 73  63 72 62 25 2d 35 30 0d  | scrb%=scrb%-50.|
00000ae0  03 52 1f e7 20 79 6c 3d  30 80 20 70 6c 3d 31 8c  |.R.. yl=0. pl=1.|
00000af0  20 73 63 72 61 25 3d 73  63 72 61 25 2d 32 0d 03  | scra%=scra%-2..|
00000b00  5c 1f e7 20 79 6c 3d 30  80 20 70 6c 3d 32 8c 20  |\.. yl=0. pl=2. |
00000b10  73 63 72 62 25 3d 73 63  72 62 25 2d 32 0d 03 66  |scrb%=scrb%-2..f|
00000b20  1d e7 20 28 79 6c 3d 30  29 80 28 b3 28 33 29 3d  |.. (yl=0).(.(3)=|
00000b30  32 29 8c f2 73 63 72 65  65 6e 0d 03 70 20 e7 20  |2)..screen..p . |
00000b40  6c 69 76 61 25 3c 30 20  84 20 6c 69 76 62 25 3c  |liva%<0 . livb%<|
00000b50  30 20 8c 20 73 74 6f 70  3d b9 0d 03 7a 3f e7 20  |0 . stop=...z?. |
00000b60  73 63 72 61 25 3c 30 8c  20 73 63 72 61 25 3d 73  |scra%<0. scra%=s|
00000b70  63 61 25 3a e7 20 73 6f  75 6e 64 20 8c e3 62 3d  |ca%:. sound ..b=|
00000b80  30 b8 35 3a d4 31 2c 2d  31 35 2c 30 2c 32 3a d4  |0.5:.1,-15,0,2:.|
00000b90  31 2c 30 2c 30 2c 32 3a  ed 0d 03 84 3f e7 20 73  |1,0,0,2:....?. s|
00000ba0  63 72 62 25 3c 30 8c 20  73 63 72 62 25 3d 73 63  |crb%<0. scrb%=sc|
00000bb0  62 25 3a e7 20 73 6f 75  6e 64 20 8c e3 62 3d 30  |b%:. sound ..b=0|
00000bc0  b8 35 3a d4 31 2c 2d 31  35 2c 30 2c 32 3a d4 31  |.5:.1,-15,0,2:.1|
00000bd0  2c 30 2c 30 2c 32 3a ed  0d 03 8e 05 e1 0d 03 98  |,0,0,2:.........|
00000be0  05 3a 0d 03 a2 0b dd f2  73 63 6f 72 65 0d 03 ac  |.:......score...|
00000bf0  0b fb 32 3a fb 31 32 39  0d 03 b6 1f f1 8a 32 2c  |..2:.129......2,|
00000c00  32 38 29 22 20 20 20 20  20 20 22 3b 8a 32 2c 32  |28)"      ";.2,2|
00000c10  38 29 73 63 72 61 25 0d  03 c0 1c f1 8a 37 2c 33  |8)scra%......7,3|
00000c20  30 29 22 20 20 22 3b 8a  37 2c 33 30 29 3b 6c 69  |0)"  ";.7,30);li|
00000c30  76 61 25 0d 03 ca 21 f1  8a 33 32 2c 32 38 29 22  |va%...!..32,28)"|
00000c40  20 20 20 20 20 20 22 3b  8a 33 32 2c 32 38 29 73  |      ";.32,28)s|
00000c50  63 72 62 25 0d 03 d4 1e  f1 8a 33 37 2c 33 30 29  |crb%......37,30)|
00000c60  22 20 20 22 3b 8a 33 37  2c 33 30 29 3b 6c 69 76  |"  ";.37,30);liv|
00000c70  62 25 0d 03 de 08 fb 31  32 38 0d 03 e8 05 e1 0d  |b%.....128......|
00000c80  03 f2 05 3a 0d 03 fc 0b  dd f2 74 69 74 6c 65 0d  |...:......title.|
00000c90  04 06 13 ef 31 39 2c 33  2c 31 2c 30 2c 30 2c 30  |....19,3,1,0,0,0|
00000ca0  2c 30 0d 04 10 8d db 3a  e3 62 61 3d 33 30 30 b8  |,0.....:.ba=300.|
00000cb0  31 88 2d 35 30 3a e6 30  2c 62 61 2f 35 30 3a ec  |1.-50:.0,ba/50:.|
00000cc0  34 30 30 2d 62 61 2c 34  30 30 3a ec 34 30 30 2c  |400-ba,400:.400,|
00000cd0  34 30 30 2b 62 61 3a f0  38 35 2c 34 30 30 2c 34  |400+ba:.85,400,4|
00000ce0  30 30 2d 62 61 3a f0 38  35 2c 34 30 30 2b 62 61  |00-ba:.85,400+ba|
00000cf0  2c 34 30 30 3a ed 3a fb  31 33 31 3a f7 3a e3 79  |,400:.:.131:.:.y|
00000d00  63 3d 31 b8 35 3a f3 6c  24 3a e3 78 63 3d 30 b8  |c=1.5:.l$:.xc=0.|
00000d10  33 39 3a e7 c1 6c 24 2c  78 63 2b 31 2c 31 29 3d  |39:..l$,xc+1,1)=|
00000d20  22 2a 22 8c f1 8a 78 63  2c 79 63 29 22 20 22 0d  |"*"...xc,yc)" ".|
00000d30  04 1a a0 ed 2c 3a fb 31  32 38 3a fb 31 3a f1 8a  |....,:.128:.1:..|
00000d40  31 30 2c 39 29 22 62 79  20 44 6f 6d 69 6e 69 63  |10,9)"by Dominic|
00000d50  20 46 6f 72 64 20 31 39  39 36 22 3a fb 32 3a f1  | Ford 1996":.2:.|
00000d60  8a 32 33 2c 32 30 29 22  53 50 41 43 45 20 2d 20  |.23,20)"SPACE - |
00000d70  48 75 6d 61 6e 2f 45 6c  6b 22 3b 8a 32 37 2c 32  |Human/Elk";.27,2|
00000d80  32 29 22 32 20 2d 20 32  20 50 6c 61 79 65 72 22  |2)"2 - 2 Player"|
00000d90  3b 8a 32 37 2c 32 34 29  22 51 20 2d 20 51 75 69  |;.27,24)"Q - Qui|
00000da0  74 22 3b 8a 32 37 2c 32  36 29 3b 22 53 20 2d 20  |t";.27,26);"S - |
00000db0  53 6f 75 6e 64 22 3b 8a  32 35 2c 31 36 29 22 53  |Sound";.25,16)"S|
00000dc0  6f 75 6e 64 3a 22 3b 8a  33 32 2c 31 36 29 3b 0d  |ound:";.32,16);.|
00000dd0  04 24 19 e7 20 73 6f 75  6e 64 20 8c f1 22 4f 6e  |.$.. sound .."On|
00000de0  22 8b f1 22 4f 66 66 22  0d 04 2e 53 e6 33 2c 32  |".."Off"...S.3,2|
00000df0  3a ec 31 31 38 30 2c 31  30 32 34 3a ec 34 30 30  |:.1180,1024:.400|
00000e00  2c 34 30 30 3a f0 38 35  2c 31 33 38 30 2c 31 30  |,400:.85,1380,10|
00000e10  32 34 3a f5 3a f5 3a 6b  24 3d bf 28 30 29 3a fd  |24:.:.:k$=.(0):.|
00000e20  20 a7 22 20 32 51 71 53  73 22 2c 6b 24 29 3c 3e  | ." 2QqSs",k$)<>|
00000e30  30 20 80 20 a9 28 6b 24  29 3e 30 0d 04 38 1c e7  |0 . .(k$)>0..8..|
00000e40  6b 24 3d 22 53 22 84 6b  24 3d 22 73 22 8c f2 73  |k$="S".k$="s"..s|
00000e50  6f 75 6e 64 3a fd a3 0d  04 42 05 e1 0d 04 4c 05  |ound:....B....L.|
00000e60  3a 0d 04 56 0b dd f2 73  6f 75 6e 64 0d 04 60 25  |:..V...sound..`%|
00000e70  e7 20 73 6f 75 6e 64 20  8c 20 73 6f 75 6e 64 3d  |. sound . sound=|
00000e80  a3 3a f1 8a 33 32 2c 31  36 29 22 4f 66 66 22 3a  |.:..32,16)"Off":|
00000e90  e1 0d 04 6a 19 73 6f 75  6e 64 3d b9 3a f1 8a 33  |...j.sound=.:..3|
00000ea0  32 2c 31 36 29 22 4f 6e  20 22 0d 04 74 05 e1 0d  |2,16)"On "..t...|
00000eb0  04 7e 05 3a 0d 04 88 2f  dc 22 2a 20 20 20 2a 2a  |.~.:.../."*   **|
00000ec0  2a 20 2a 2a 2a 20 2a 2a  2a 20 2a 2a 2a 20 20 2a  |* *** *** ***  *|
00000ed0  2a 2a 2a 20 2a 2a 2a 20  2a 2a 2a 20 2a 2a 2a 2a  |*** *** *** ****|
00000ee0  2a 2a 22 0d 04 92 2f dc  22 2a 20 20 20 2a 20 2a  |**".../."*   * *|
00000ef0  20 2a 20 20 20 2a 20 20  20 2a 20 2a 20 20 20 2a  | *   *   * *   *|
00000f00  20 2a 20 2a 20 2a 20 2a  20 2a 20 20 2a 20 2a 20  | * * * * *  * * |
00000f10  20 22 0d 04 9c 2f dc 22  2a 20 20 20 2a 2a 2a 20  | ".../."*   *** |
00000f20  2a 2a 2a 20 2a 2a 20 20  2a 2a 2a 20 20 20 2a 20  |*** **  ***   * |
00000f30  2a 20 2a 2a 2a 20 2a 2a  2a 20 20 2a 20 2a 2a 2a  |* *** ***  * ***|
00000f40  22 0d 04 a6 2f dc 22 2a  20 20 20 2a 20 2a 20 20  |".../."*   * *  |
00000f50  20 2a 20 2a 20 20 20 2a  2a 20 20 20 20 2a 20 2a  | * *   **    * *|
00000f60  20 2a 20 2a 20 2a 2a 20  20 20 2a 20 20 20 2a 22  | * * **   *   *"|
00000f70  0d 04 b0 2f dc 22 2a 2a  2a 20 2a 20 2a 20 2a 2a  |.../."*** * * **|
00000f80  2a 20 2a 2a 2a 20 2a 20  2a 20 20 2a 2a 2a 2a 20  |* *** * *  **** |
00000f90  2a 20 2a 20 2a 20 2a 20  20 2a 20 2a 2a 2a 22 0d  |* * * *  * ***".|
00000fa0  04 ba 05 3a 0d 04 c4 09  dd f2 61 73 73 0d 04 ce  |...:......ass...|
00000fb0  10 6f 73 77 6f 72 64 3d  26 46 46 46 31 0d 04 d8  |.osword=&FFF1...|
00000fc0  10 e3 20 70 61 73 73 3d  30 b8 32 88 32 0d 04 e2  |.. pass=0.2.2...|
00000fd0  0b 50 25 3d 26 42 43 30  0d 04 ec 0d 5b 4f 50 54  |.P%=&BC0....[OPT|
00000fe0  20 70 61 73 73 0d 04 f6  0f 2e 70 6c 61 20 45 51  | pass.....pla EQ|
00000ff0  55 42 20 30 0d 05 00 0f  2e 78 6c 61 20 45 51 55  |UB 0.....xla EQU|
00001000  42 20 30 0d 05 0a 0f 2e  79 6c 61 20 45 51 55 42  |B 0.....yla EQUB|
00001010  20 30 0d 05 14 0f 2e 64  6c 61 20 45 51 55 42 20  | 0.....dla EQUB |
00001020  30 0d 05 1e 0e 2e 70 6e  20 45 51 55 42 20 30 0d  |0.....pn EQUB 0.|
00001030  05 28 23 2e 70 78 20 45  51 55 44 20 30 3a 45 51  |.(#.px EQUD 0:EQ|
00001040  55 44 20 30 3a 45 51 55  44 20 30 3a 45 51 55 44  |UD 0:EQUD 0:EQUD|
00001050  20 30 0d 05 32 23 2e 70  79 20 45 51 55 44 20 30  | 0..2#.py EQUD 0|
00001060  3a 45 51 55 44 20 30 3a  45 51 55 44 20 30 3a 45  |:EQUD 0:EQUD 0:E|
00001070  51 55 44 20 30 0d 05 3c  0d 5d 3a 50 25 3d 26 44  |QUD 0..<.]:P%=&D|
00001080  30 30 0d 05 46 0d 5b 4f  50 54 20 70 61 73 73 0d  |00..F.[OPT pass.|
00001090  05 50 13 2e 74 72 61 63  65 72 61 79 20 4c 44 58  |.P..traceray LDX|
000010a0  23 30 0d 05 5a 4d 2e 73  74 61 72 74 6c 6f 70 20  |#0..ZM.startlop |
000010b0  4c 44 41 78 6c 61 3a 53  54 41 70 78 2c 58 3a 4c  |LDAxla:STApx,X:L|
000010c0  44 41 79 6c 61 3a 53 54  41 70 79 2c 58 3a 49 4e  |DAyla:STApy,X:IN|
000010d0  58 3a 43 50 58 23 38 3a  42 4e 45 73 74 61 72 74  |X:CPX#8:BNEstart|
000010e0  6c 6f 70 3a 4c 44 41 23  30 3a 53 54 41 70 6e 0d  |lop:LDA#0:STApn.|
000010f0  05 64 76 2e 74 72 61 63  65 6c 6f 70 20 4c 44 41  |.dv.tracelop LDA|
00001100  23 31 3a 4a 53 52 6f 73  77 6f 72 64 3a 53 54 58  |#1:JSRosword:STX|
00001110  26 37 30 3a 53 54 59 26  37 31 3a 4c 44 59 23 30  |&70:STY&71:LDY#0|
00001120  3a 4c 44 41 28 26 37 30  29 2c 59 3a 53 54 41 26  |:LDA(&70),Y:STA&|
00001130  37 34 3a 4c 44 41 64 6c  61 3a 42 4e 45 6e 6f 74  |74:LDAdla:BNEnot|
00001140  6c 65 66 74 3a 4c 44 41  78 6c 61 3a 53 45 43 3a  |left:LDAxla:SEC:|
00001150  53 42 43 23 32 3a 53 54  41 78 6c 61 3a 4a 4d 50  |SBC#2:STAxla:JMP|
00001160  6d 6f 76 65 64 0d 05 6e  3c 2e 6e 6f 74 6c 65 66  |moved..n<.notlef|
00001170  74 20 43 4d 50 23 31 3a  42 4e 45 6e 6f 74 75 70  |t CMP#1:BNEnotup|
00001180  3a 4c 44 41 79 6c 61 3a  43 4c 43 3a 41 44 43 23  |:LDAyla:CLC:ADC#|
00001190  32 3a 53 54 41 79 6c 61  3a 4a 4d 50 6d 6f 76 65  |2:STAyla:JMPmove|
000011a0  64 0d 05 78 39 2e 6e 6f  74 75 70 20 43 4d 50 23  |d..x9.notup CMP#|
000011b0  32 3a 42 4e 45 64 6f 77  6e 3a 4c 44 41 78 6c 61  |2:BNEdown:LDAxla|
000011c0  3a 43 4c 43 3a 41 44 43  23 32 3a 53 54 41 78 6c  |:CLC:ADC#2:STAxl|
000011d0  61 3a 4a 4d 50 6d 6f 76  65 64 0d 05 82 21 2e 64  |a:JMPmoved...!.d|
000011e0  6f 77 6e 20 4c 44 41 79  6c 61 3a 53 45 43 3a 53  |own LDAyla:SEC:S|
000011f0  42 43 23 32 3a 53 54 41  79 6c 61 0d 05 8c 68 2e  |BC#2:STAyla...h.|
00001200  6d 6f 76 65 64 20 4a 53  52 67 65 74 61 64 3a 4c  |moved JSRgetad:L|
00001210  44 41 28 26 37 30 29 2c  59 3a 4c 44 58 26 37 32  |DA(&70),Y:LDX&72|
00001220  3a 80 73 63 72 62 69 74  2c 58 3a 53 54 41 26 37  |:.scrbit,X:STA&7|
00001230  33 3a 80 23 26 46 30 3a  42 45 51 6e 6f 74 72 65  |3:.#&F0:BEQnotre|
00001240  66 3a 4c 44 41 26 37 33  3a 80 23 26 30 46 3a 42  |f:LDA&73:.#&0F:B|
00001250  45 51 6e 6f 74 72 65 66  3a 4a 53 52 72 65 66 6c  |EQnotref:JSRrefl|
00001260  65 63 74 0d 05 96 cb 2e  6e 6f 74 72 65 66 20 49  |ect.....notref I|
00001270  4e 43 70 6e 3a 4c 44 41  70 6e 3a 80 23 37 3a 53  |NCpn:LDApn:.#7:S|
00001280  54 41 70 6e 3a 54 41 58  3a 4c 44 41 78 6c 61 3a  |TApn:TAX:LDAxla:|
00001290  50 48 41 3a 4c 44 41 79  6c 61 3a 50 48 41 3a 4c  |PHA:LDAyla:PHA:L|
000012a0  44 41 70 78 2c 58 3a 53  54 41 78 6c 61 3a 4c 44  |DApx,X:STAxla:LD|
000012b0  41 70 79 2c 58 3a 53 54  41 79 6c 61 3a 4a 53 52  |Apy,X:STAyla:JSR|
000012c0  67 65 74 61 64 3a 4c 44  58 26 37 32 3a 4c 44 41  |getad:LDX&72:LDA|
000012d0  73 63 72 62 69 74 2c 58  3a 82 23 26 46 46 3a 80  |scrbit,X:.#&FF:.|
000012e0  28 26 37 30 29 2c 59 3a  53 54 41 28 26 37 30 29  |(&70),Y:STA(&70)|
000012f0  2c 59 3a 4c 44 58 70 6e  3a 50 4c 41 3a 53 54 41  |,Y:LDXpn:PLA:STA|
00001300  79 6c 61 3a 53 54 41 70  79 2c 58 3a 50 4c 41 3a  |yla:STApy,X:PLA:|
00001310  53 54 41 78 6c 61 3a 53  54 41 70 78 2c 58 3a 4a  |STAxla:STApx,X:J|
00001320  53 52 67 65 74 61 64 3a  4c 44 58 26 37 32 0d 05  |SRgetad:LDX&72..|
00001330  a0 97 4c 44 41 73 63 72  62 69 74 2c 58 3a 82 23  |..LDAscrbit,X:.#|
00001340  26 46 46 3a 80 28 26 37  30 29 2c 59 3a 53 54 41  |&FF:.(&70),Y:STA|
00001350  28 26 37 30 29 2c 59 3a  4c 44 41 73 63 72 62 69  |(&70),Y:LDAscrbi|
00001360  74 2c 58 3a 80 23 26 46  30 3a 43 4c 43 3a 41 44  |t,X:.#&F0:CLC:AD|
00001370  43 28 26 37 30 29 2c 59  3a 53 54 41 28 26 37 30  |C(&70),Y:STA(&70|
00001380  29 2c 59 3a 4c 44 41 78  6c 61 3a 42 45 51 66 69  |),Y:LDAxla:BEQfi|
00001390  6e 74 72 3a 43 4d 50 23  32 35 32 3a 42 43 53 66  |ntr:CMP#252:BCSf|
000013a0  69 6e 74 72 3a 4c 44 41  79 6c 61 3a 42 45 51 66  |intr:LDAyla:BEQf|
000013b0  69 6e 74 72 3a 43 4d 50  23 31 35 38 3a 42 43 53  |intr:CMP#158:BCS|
000013c0  66 69 6e 74 72 0d 05 aa  59 2e 77 61 69 74 6c 6f  |fintr...Y.waitlo|
000013d0  70 20 4c 44 41 23 31 3a  4a 53 52 6f 73 77 6f 72  |p LDA#1:JSRoswor|
000013e0  64 3a 53 54 58 26 37 30  3a 53 54 59 26 37 31 3a  |d:STX&70:STY&71:|
000013f0  4c 44 59 23 30 3a 4c 44  41 28 26 37 30 29 2c 59  |LDY#0:LDA(&70),Y|
00001400  3a 43 4d 50 26 37 34 3a  42 45 51 77 61 69 74 6c  |:CMP&74:BEQwaitl|
00001410  6f 70 3a 4a 4d 50 74 72  61 63 65 6c 6f 70 0d 05  |op:JMPtracelop..|
00001420  b4 2c 2e 66 69 6e 74 72  20 4c 44 41 78 6c 61 3a  |.,.fintr LDAxla:|
00001430  50 48 41 3a 4c 44 41 79  6c 61 3a 50 48 41 3a 4c  |PHA:LDAyla:PHA:L|
00001440  44 58 23 30 3a 53 54 58  70 6e 0d 05 be 95 2e 66  |DX#0:STXpn.....f|
00001450  69 6e 6c 6f 70 20 4c 44  41 70 78 2c 58 3a 53 54  |inlop LDApx,X:ST|
00001460  41 78 6c 61 3a 4c 44 41  70 79 2c 58 3a 53 54 41  |Axla:LDApy,X:STA|
00001470  79 6c 61 3a 4a 53 52 67  65 74 61 64 3a 4c 44 58  |yla:JSRgetad:LDX|
00001480  26 37 32 3a 4c 44 41 73  63 72 62 69 74 2c 58 3a  |&72:LDAscrbit,X:|
00001490  82 23 26 46 46 3a 80 28  26 37 30 29 2c 59 3a 53  |.#&FF:.(&70),Y:S|
000014a0  54 41 28 26 37 30 29 2c  59 3a 49 4e 43 70 6e 3a  |TA(&70),Y:INCpn:|
000014b0  4c 44 58 70 6e 3a 43 50  58 23 38 3a 42 4e 45 66  |LDXpn:CPX#8:BNEf|
000014c0  69 6e 6c 6f 70 3a 50 4c  41 3a 53 54 41 79 6c 61  |inlop:PLA:STAyla|
000014d0  3a 50 4c 41 3a 53 54 41  78 6c 61 3a 52 54 53 0d  |:PLA:STAxla:RTS.|
000014e0  05 c8 05 3a 0d 05 d2 e1  2e 72 65 66 6c 65 63 74  |...:.....reflect|
000014f0  20 4c 44 41 23 37 3a 4a  53 52 26 46 46 45 45 3a  | LDA#7:JSR&FFEE:|
00001500  4c 44 41 78 6c 61 3a 53  45 43 3a 53 42 43 23 26  |LDAxla:SEC:SBC#&|
00001510  31 30 3a 4c 53 52 20 41  3a 4c 53 52 20 41 3a 4c  |10:LSR A:LSR A:L|
00001520  53 52 20 41 3a 43 4c 43  3a 41 44 43 23 26 31 30  |SR A:CLC:ADC#&10|
00001530  3a 53 54 41 26 38 30 3a  4c 44 41 79 6c 61 3a 53  |:STA&80:LDAyla:S|
00001540  45 43 3a 53 42 43 23 38  3a 80 23 26 46 38 3a 50  |EC:SBC#8:.#&F8:P|
00001550  48 41 3a 4c 53 52 20 41  3a 43 4c 43 3a 41 44 43  |HA:LSR A:CLC:ADC|
00001560  26 38 30 3a 53 54 41 26  38 30 3a 50 4c 41 3a 41  |&80:STA&80:PLA:A|
00001570  53 4c 20 41 3a 50 48 41  3a 4c 44 41 23 26 41 3a  |SL A:PHA:LDA#&A:|
00001580  41 44 43 23 30 3a 53 54  41 26 38 31 3a 50 4c 41  |ADC#0:STA&81:PLA|
00001590  3a 41 44 43 26 38 30 3a  53 54 41 26 38 30 3a 4c  |:ADC&80:STA&80:L|
000015a0  44 59 23 30 3a 4c 44 41  28 26 38 30 29 2c 59 3a  |DY#0:LDA(&80),Y:|
000015b0  4c 44 59 64 6c 61 3a 43  4d 50 23 31 3a 42 45 51  |LDYdla:CMP#1:BEQ|
000015c0  66 6f 72 73 6c 0d 05 dc  33 4c 44 41 62 61 63 6b  |forsl...3LDAback|
000015d0  2c 59 3a 53 54 41 64 6c  61 3a 52 54 53 3a 2e 66  |,Y:STAdla:RTS:.f|
000015e0  6f 72 73 6c 20 4c 44 41  66 6f 72 2c 59 3a 53 54  |orsl LDAfor,Y:ST|
000015f0  41 64 6c 61 3a 52 54 53  0d 05 e6 32 2e 62 61 63  |Adla:RTS...2.bac|
00001600  6b 20 45 51 55 42 33 3a  45 51 55 42 32 3a 2e 66  |k EQUB3:EQUB2:.f|
00001610  6f 72 20 45 51 55 42 31  3a 45 51 55 42 30 3a 45  |or EQUB1:EQUB0:E|
00001620  51 55 42 33 3a 45 51 55  42 32 0d 05 f0 05 3a 0d  |QUB3:EQUB2....:.|
00001630  05 fa ca 2e 67 65 74 61  64 20 4c 44 41 78 6c 61  |....getad LDAxla|
00001640  3a 80 23 26 46 38 3a 53  54 41 26 37 32 3a 43 4c  |:.#&F8:STA&72:CL|
00001650  43 3a 41 44 43 23 26 34  30 3a 53 54 41 26 37 30  |C:ADC#&40:STA&70|
00001660  3a 4c 44 41 23 30 3a 41  44 43 23 26 33 46 3a 53  |:LDA#0:ADC#&3F:S|
00001670  54 41 26 37 31 3a 4c 44  41 26 37 30 3a 43 4c 43  |TA&71:LDA&70:CLC|
00001680  3a 41 44 43 26 37 32 3a  53 54 41 26 37 30 3a 4c  |:ADC&72:STA&70:L|
00001690  44 41 26 37 31 3a 41 44  43 23 30 3a 53 54 41 26  |DA&71:ADC#0:STA&|
000016a0  37 31 3a 4c 44 41 79 6c  61 3a 80 23 26 46 38 3a  |71:LDAyla:.#&F8:|
000016b0  41 53 4c 20 41 3a 53 54  41 26 37 32 3a 4c 44 41  |ASL A:STA&72:LDA|
000016c0  23 30 3a 52 4f 4c 20 41  3a 53 54 41 26 37 33 3a  |#0:ROL A:STA&73:|
000016d0  41 53 4c 26 37 32 3a 52  4f 4c 26 37 33 3a 41 53  |ASL&72:ROL&73:AS|
000016e0  4c 26 37 32 3a 52 4f 4c  26 37 33 3a 41 53 4c 26  |L&72:ROL&73:ASL&|
000016f0  37 32 3a 52 4f 4c 26 37  33 0d 06 04 2a 4c 44 41  |72:ROL&73...*LDA|
00001700  26 37 30 3a 43 4c 43 3a  41 44 43 26 37 32 3a 53  |&70:CLC:ADC&72:S|
00001710  54 41 26 37 30 3a 4c 44  41 26 37 31 3a 41 44 43  |TA&70:LDA&71:ADC|
00001720  26 37 33 0d 06 0e bc 53  54 41 26 37 31 3a 41 53  |&73....STA&71:AS|
00001730  4c 26 37 32 3a 52 4f 4c  26 37 33 3a 41 53 4c 26  |L&72:ROL&73:ASL&|
00001740  37 32 3a 52 4f 4c 26 37  33 3a 4c 44 41 26 37 30  |72:ROL&73:LDA&70|
00001750  3a 43 4c 43 3a 41 44 43  26 37 32 3a 53 54 41 26  |:CLC:ADC&72:STA&|
00001760  37 30 3a 4c 44 41 26 37  31 3a 41 44 43 26 37 33  |70:LDA&71:ADC&73|
00001770  3a 53 54 41 26 37 31 3a  4c 44 41 79 6c 61 3a 80  |:STA&71:LDAyla:.|
00001780  23 37 3a 41 44 43 26 37  30 3a 53 54 41 26 37 30  |#7:ADC&70:STA&70|
00001790  3a 4c 44 41 26 37 31 3a  41 44 43 23 30 3a 53 54  |:LDA&71:ADC#0:ST|
000017a0  41 26 37 31 3a 4c 44 41  78 6c 61 3a 80 23 34 3a  |A&71:LDAxla:.#4:|
000017b0  41 53 4c 20 41 3a 41 44  43 26 37 30 3a 53 54 41  |ASL A:ADC&70:STA|
000017c0  26 37 30 3a 4c 44 41 78  6c 61 3a 80 23 33 3a 53  |&70:LDAxla:.#3:S|
000017d0  54 41 26 37 32 3a 4c 44  59 23 30 3a 52 54 53 0d  |TA&72:LDY#0:RTS.|
000017e0  06 18 2b 2e 73 63 72 62  69 74 20 45 51 55 42 26  |..+.scrbit EQUB&|
000017f0  38 38 3a 45 51 55 42 26  34 34 3a 45 51 55 42 26  |88:EQUB&44:EQUB&|
00001800  32 32 3a 45 51 55 42 26  31 31 0d 06 22 07 5d 3a  |22:EQUB&11..".]:|
00001810  ed 0d 06 2c 05 e1 0d 06  36 05 3a 0d 06 40 0b dd  |...,....6.:..@..|
00001820  f2 72 65 6c 6f 63 0d 06  4a 0b d3 3d 26 35 38 30  |.reloc..J..=&580|
00001830  30 0d 06 54 14 e3 20 70  61 73 73 3d 30 20 b8 20  |0..T.. pass=0 . |
00001840  32 20 88 20 32 0d 06 5e  0b 50 25 3d 26 43 30 30  |2 . 2..^.P%=&C00|
00001850  0d 06 68 0c 5b 4f 50 54  70 61 73 73 0d 06 72 4a  |..h.[OPTpass..rJ|
00001860  20 20 20 20 4c 44 59 23  30 3a 53 54 59 26 37 30  |    LDY#0:STY&70|
00001870  3a 53 54 59 26 37 32 3a  4c 44 41 23 26 31 30 3a  |:STY&72:LDA#&10:|
00001880  53 45 43 3a 53 42 43 26  31 38 3a 53 54 41 26 37  |SEC:SBC&18:STA&7|
00001890  34 3a 4c 44 41 26 31 38  3a 43 4d 50 23 26 31 30  |4:LDA&18:CMP#&10|
000018a0  3a 42 43 43 61 64 0d 06  7c 1d 2e 73 62 20 53 54  |:BCCad..|..sb ST|
000018b0  41 26 37 31 3a 4c 44 41  23 26 31 30 3a 53 54 41  |A&71:LDA#&10:STA|
000018c0  26 37 33 0d 06 86 53 2e  6d 31 20 4c 44 41 28 26  |&73...S.m1 LDA(&|
000018d0  37 30 29 2c 59 3a 53 54  41 28 26 37 32 29 2c 59  |70),Y:STA(&72),Y|
000018e0  3a 49 4e 59 3a 42 4e 45  6d 31 3a 49 4e 43 26 37  |:INY:BNEm1:INC&7|
000018f0  31 3a 49 4e 43 26 37 33  3a 4c 44 58 26 37 31 3a  |1:INC&73:LDX&71:|
00001900  44 45 58 3a 43 50 58 26  30 33 3a 42 43 43 6d 31  |DEX:CPX&03:BCCm1|
00001910  3a 42 43 53 65 6d 0d 06  90 34 2e 61 64 20 4c 44  |:BCSem...4.ad LD|
00001920  41 26 30 33 3a 53 54 41  26 37 31 3a 43 4c 43 3a  |A&03:STA&71:CLC:|
00001930  41 44 43 26 37 34 3a 53  54 41 26 37 33 3a 4c 44  |ADC&74:STA&73:LD|
00001940  41 23 30 3a 4c 44 59 26  30 32 0d 06 9a 52 2e 6d  |A#0:LDY&02...R.m|
00001950  32 20 4c 44 41 28 26 37  30 29 2c 59 3a 53 54 41  |2 LDA(&70),Y:STA|
00001960  28 26 37 32 29 2c 59 3a  44 45 59 3a 43 50 59 23  |(&72),Y:DEY:CPY#|
00001970  26 46 46 3a 42 4e 45 6d  32 3a 44 45 43 26 37 31  |&FF:BNEm2:DEC&71|
00001980  3a 44 45 43 26 37 33 3a  4c 44 41 26 37 33 3a 43  |:DEC&73:LDA&73:C|
00001990  4d 50 23 26 31 36 3a 42  43 53 6d 32 0d 06 a4 3a  |MP#&16:BCSm2...:|
000019a0  2e 65 6d 20 4c 44 41 26  31 33 3a 43 4c 43 3a 41  |.em LDA&13:CLC:A|
000019b0  44 43 26 37 34 3a 53 54  41 26 31 33 3a 53 54 41  |DC&74:STA&13:STA|
000019c0  26 30 31 3a 4c 44 41 23  26 31 30 3a 53 54 41 26  |&01:LDA#&10:STA&|
000019d0  31 38 3a 52 54 53 0d 06  ae 05 5d 0d 06 b8 05 ed  |18:RTS....].....|
000019e0  0d 06 c2 08 ef 20 32 31  0d 06 cc 31 ff 22 4b 45  |..... 21...1."KE|
000019f0  59 20 30 22 22 43 41 4c  4c 26 43 30 30 7c 4d 52  |Y 0""CALL&C00|MR|
00001a00  55 4e 7c 46 7c 4d 22 22  22 3a ff 22 46 58 20 31  |UN|F|M""":."FX 1|
00001a10  35 33 2c 30 2c 31 32 38  22 0d 06 d6 05 e0 0d 06  |53,0,128".......|
00001a20  e0 05 e1 0d ff                                    |.....|
00001a25
Bounce/Laser3.m0
Bounce/Laser3.m1
Bounce/Laser3.m2
Bounce/Laser3.m4
Bounce/Laser3.m5