Home » Archimedes archive » Archimedes World » AW-1991-05.adf » May91 » !AWMay91/Goodies/Knights/!Oneknight/GAME

!AWMay91/Goodies/Knights/!Oneknight/GAME

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 » Archimedes archive » Archimedes World » AW-1991-05.adf » May91
Filename: !AWMay91/Goodies/Knights/!Oneknight/GAME
Read OK:
File size: 0875 bytes
Load address: 0000
Exec address: 0000
File contents
   10REM A KNIGHT PUZZLE   D.A.PEDDER 15/7/90
   20DIM board%(8,8,1)
   30REPEAT
   40MODE 12
   50COLOUR 1,255,255,255
   60COLOUR 2,200,200,200
   70COLOUR 3,100,100,100
   80COLOUR 4,230,230,230
   90COLOUR 5,150,150,150
  100COLOUR 6,255,255,0
  110COLOUR 7,255,255,255
  120COLOUR 8,128,128,255
  130COLOUR 9,240,240,200
  140COLOUR 10,128,100,0
  150COLOUR 11,255,0,0
  160COLOUR 12,240,240,200
  170COLOUR 13,0,80,200
  180COLOUR 14,150,80,0
  190COLOUR 15,80,80,100
  200VDU 23,1,0,0,0,0,0,0,0,0
  210moves%=0:done%=FALSE:play%=TRUE:button%=0
  220nowx%=1:nowy%=8:finish%=FALSE:valid%=FALSE
  230FOR xboard%=1 TO 8
  240FOR yboard%=1 TO 8
  250board%(xboard%,yboard%,0)=1
  260board%(xboard%,yboard%,1)=0
  270NEXT
  280NEXT
  290board%(1,8,1)=1
  300CLS
  310*SLOAD knightbits
  320PROCdrawboard
  330PRINTTAB(25,29)"READY TO BEGIN"
  340MOUSE ON 1
  350REPEAT
  360REPEAT
  370PROCmove
  380UNTIL valid%=TRUE OR finish%=TRUE
  390IF finish%=FALSE THEN
  400PROCmovebits
  410PROCisitdone
  420ENDIF
  430UNTIL done%=TRUE OR finish%=TRUE
  440PROCplayagain
  450UNTILplay%=FALSE
  460END
  470DEFPROCdrawboard
  480FORhoriz%=1 TO 8
  490FORvert%= 1 TO 8
  500GCOL 0,0
  510VDU 23,27,0,board%(horiz%,vert%,0),0,0,0,0,0,0
  520PLOT &ED,96*horiz%,(96*vert%)+50
  530IF vert%=nowy% AND horiz%=nowx% THEN nopiece%=0 ELSE nopiece%=1
  540IF nopiece%=0 THEN
  550VDU 23,27,0,4,0,0,0,0,0,0
  560GCOL 8,0
  570PLOT &ED,96*horiz%,(96*vert%)+50
  580ENDIF
  590NEXT
  600NEXT
  610ENDPROC
  620DEFPROCmove
  630REPEAT
  640MOUSExpos%,ypos%,button%
  650UNTIL button%=0
  660REPEAT
  670MOUSExpos%,ypos%,button%
  680UNTIL button%<>0
  690IF button%<>2 THEN
  700valid%=FALSE
  710xsel%=(xpos% DIV 96)
  720ysel%=((ypos%-50)DIV 96)
  730IF xsel%>0 AND xsel%<9 AND ysel%>0 AND ysel%<9 THEN
  740IF board%(xsel%,ysel%,1)=0 THEN
  750IF ABS(xsel%-nowx%)=1 AND ABS(ysel%-nowy%)=2 THEN valid%=TRUE
  760IF ABS(xsel%-nowx%)=2 AND ABS(ysel%-nowy%)=1 THEN valid%=TRUE
  770ENDIF
  780ENDIF
  790IF valid%=TRUE  THEN
  800board%(xsel%,ysel%,1)=1
  810moves%=moves%+1
  820PRINTTAB(25,29)"NUMBER OF MOVES =";moves%
  830ENDIF
  840ENDIF
  850IF button%=2 THEN finish%=TRUE
  860ENDPROC
  870DEFPROCmovebits
  880tempfreex%=nowx%:tempfreey%=nowy%
  890GCOL 8,0
  900VDU 23,27,0,2,0,0,0,0,0,0
  910PLOT &ED,96*nowx%,(96*nowy%)+50
  920nowx%=xsel%:nowy%=ysel%
  930VDU 23,27,0,4,0,0,0,0,0,0
  940PLOT &ED,96*xsel%,(96*ysel%)+50
  950ENDPROC
  960DEFPROCisitdone
  970PRINTTAB(30,2)
  980IF moves%=63 THEN
  990done%=TRUE
 1000PRINTTAB(11,28)" CONGRATULATIONS PUZZLE COMPLETED"
 1010ENDIF
 1020ENDPROC
 1030DEFPROCplayagain
 1040PRINTTAB(1,29)"PRESS LEFT MOUSE BUTTON TO PLAY AGAIN,ANY OTHER BUTTON TO LEAVE PROGRAM"
 1050REPEAT:MOUSExpos%,ypos%,button% :UNTIL button%=0
 1060REPEAT:MOUSExpos%,ypos%,button% :UNTIL button%<>0
 1070IF button%=4 THEN play%=TRUE ELSE play%=FALSE
 1080ENDPROC

*� A KNIGHT PUZZLE   D.A.PEDDER 15/7/90
� board%(8,8,1)
�
(� 12
2� 1,255,255,255
<� 2,200,200,200
F� 3,100,100,100
P� 4,230,230,230
Z� 5,150,150,150
d� 6,255,255,0
n� 7,255,255,255
x� 8,128,128,255
�� 9,240,240,200
�� 10,128,100,0
�� 11,255,0,0
�� 12,240,240,200
�� 13,0,80,200
�� 14,150,80,0
�� 15,80,80,100
�� 23,1,0,0,0,0,0,0,0,0
�&moves%=0:done%=�:play%=�:button%=0
�&nowx%=1:nowy%=8:finish%=�:valid%=�
�� xboard%=1 � 8
�� yboard%=1 � 8
�board%(xboard%,yboard%,0)=1
board%(xboard%,yboard%,1)=0
�
�
"board%(1,8,1)=1
,�
6*SLOAD knightbits
@�drawboard
J�25,29)"READY TO BEGIN"
T
ȗ � 1
^�
h�
r	�move
|� valid%=� � finish%=�
�� finish%=� �
�
�movebits
�
�isitdone
��
�� done%=� � finish%=�
��playagain
��play%=�
��
���drawboard
��horiz%=1 � 8
��vert%= 1 � 8
�	� 0,0
�0� 23,27,0,board%(horiz%,vert%,0),0,0,0,0,0,0
!� &ED,96*horiz%,(96*vert%)+50
:� vert%=nowy% � horiz%=nowx% � nopiece%=0 � nopiece%=1
� nopiece%=0 �
&� 23,27,0,4,0,0,0,0,0,0
0	� 8,0
:!� &ED,96*horiz%,(96*vert%)+50
D�
N�
X�
b�
l
��move
v�
�ȗxpos%,ypos%,button%
�� button%=0
��
�ȗxpos%,ypos%,button%
�� button%<>0
�� button%<>2 �
�valid%=�
�xsel%=(xpos% � 96)
�ysel%=((ypos%-50)� 96)
�-� xsel%>0 � xsel%<9 � ysel%>0 � ysel%<9 �
�� board%(xsel%,ysel%,1)=0 �
�4� �(xsel%-nowx%)=1 � �(ysel%-nowy%)=2 � valid%=�
�4� �(xsel%-nowx%)=2 � �(ysel%-nowy%)=1 � valid%=�
�
�
� valid%=�  �
 board%(xsel%,ysel%,1)=1
*moves%=moves%+1
4&�25,29)"NUMBER OF MOVES =";moves%
>�
H�
R� button%=2 � finish%=�
\�
f��movebits
p%tempfreex%=nowx%:tempfreey%=nowy%
z	� 8,0
�� 23,27,0,2,0,0,0,0,0,0
� � &ED,96*nowx%,(96*nowy%)+50
�nowx%=xsel%:nowy%=ysel%
�� 23,27,0,4,0,0,0,0,0,0
� � &ED,96*xsel%,(96*ysel%)+50
��
���isitdone
��30,2)
�� moves%=63 �
�done%=�
�/�11,28)" CONGRATULATIONS PUZZLE COMPLETED"
��
��
��playagain
T�1,29)"PRESS LEFT MOUSE BUTTON TO PLAY AGAIN,ANY OTHER BUTTON TO LEAVE PROGRAM"
(�:ȗxpos%,ypos%,button% :� button%=0
$)�:ȗxpos%,ypos%,button% :� button%<>0
.#� button%=4 � play%=� � play%=�
8�
�
00000000  0d 00 0a 2a f4 20 41 20  4b 4e 49 47 48 54 20 50  |...*. A KNIGHT P|
00000010  55 5a 5a 4c 45 20 20 20  44 2e 41 2e 50 45 44 44  |UZZLE   D.A.PEDD|
00000020  45 52 20 31 35 2f 37 2f  39 30 0d 00 14 13 de 20  |ER 15/7/90..... |
00000030  62 6f 61 72 64 25 28 38  2c 38 2c 31 29 0d 00 1e  |board%(8,8,1)...|
00000040  05 f5 0d 00 28 08 eb 20  31 32 0d 00 32 13 fb 20  |....(.. 12..2.. |
00000050  31 2c 32 35 35 2c 32 35  35 2c 32 35 35 0d 00 3c  |1,255,255,255..<|
00000060  13 fb 20 32 2c 32 30 30  2c 32 30 30 2c 32 30 30  |.. 2,200,200,200|
00000070  0d 00 46 13 fb 20 33 2c  31 30 30 2c 31 30 30 2c  |..F.. 3,100,100,|
00000080  31 30 30 0d 00 50 13 fb  20 34 2c 32 33 30 2c 32  |100..P.. 4,230,2|
00000090  33 30 2c 32 33 30 0d 00  5a 13 fb 20 35 2c 31 35  |30,230..Z.. 5,15|
000000a0  30 2c 31 35 30 2c 31 35  30 0d 00 64 11 fb 20 36  |0,150,150..d.. 6|
000000b0  2c 32 35 35 2c 32 35 35  2c 30 0d 00 6e 13 fb 20  |,255,255,0..n.. |
000000c0  37 2c 32 35 35 2c 32 35  35 2c 32 35 35 0d 00 78  |7,255,255,255..x|
000000d0  13 fb 20 38 2c 31 32 38  2c 31 32 38 2c 32 35 35  |.. 8,128,128,255|
000000e0  0d 00 82 13 fb 20 39 2c  32 34 30 2c 32 34 30 2c  |..... 9,240,240,|
000000f0  32 30 30 0d 00 8c 12 fb  20 31 30 2c 31 32 38 2c  |200..... 10,128,|
00000100  31 30 30 2c 30 0d 00 96  10 fb 20 31 31 2c 32 35  |100,0..... 11,25|
00000110  35 2c 30 2c 30 0d 00 a0  14 fb 20 31 32 2c 32 34  |5,0,0..... 12,24|
00000120  30 2c 32 34 30 2c 32 30  30 0d 00 aa 11 fb 20 31  |0,240,200..... 1|
00000130  33 2c 30 2c 38 30 2c 32  30 30 0d 00 b4 11 fb 20  |3,0,80,200..... |
00000140  31 34 2c 31 35 30 2c 38  30 2c 30 0d 00 be 12 fb  |14,150,80,0.....|
00000150  20 31 35 2c 38 30 2c 38  30 2c 31 30 30 0d 00 c8  | 15,80,80,100...|
00000160  1a ef 20 32 33 2c 31 2c  30 2c 30 2c 30 2c 30 2c  |.. 23,1,0,0,0,0,|
00000170  30 2c 30 2c 30 2c 30 0d  00 d2 26 6d 6f 76 65 73  |0,0,0,0...&moves|
00000180  25 3d 30 3a 64 6f 6e 65  25 3d a3 3a 70 6c 61 79  |%=0:done%=.:play|
00000190  25 3d b9 3a 62 75 74 74  6f 6e 25 3d 30 0d 00 dc  |%=.:button%=0...|
000001a0  26 6e 6f 77 78 25 3d 31  3a 6e 6f 77 79 25 3d 38  |&nowx%=1:nowy%=8|
000001b0  3a 66 69 6e 69 73 68 25  3d a3 3a 76 61 6c 69 64  |:finish%=.:valid|
000001c0  25 3d a3 0d 00 e6 13 e3  20 78 62 6f 61 72 64 25  |%=...... xboard%|
000001d0  3d 31 20 b8 20 38 0d 00  f0 13 e3 20 79 62 6f 61  |=1 . 8..... yboa|
000001e0  72 64 25 3d 31 20 b8 20  38 0d 00 fa 1f 62 6f 61  |rd%=1 . 8....boa|
000001f0  72 64 25 28 78 62 6f 61  72 64 25 2c 79 62 6f 61  |rd%(xboard%,yboa|
00000200  72 64 25 2c 30 29 3d 31  0d 01 04 1f 62 6f 61 72  |rd%,0)=1....boar|
00000210  64 25 28 78 62 6f 61 72  64 25 2c 79 62 6f 61 72  |d%(xboard%,yboar|
00000220  64 25 2c 31 29 3d 30 0d  01 0e 05 ed 0d 01 18 05  |d%,1)=0.........|
00000230  ed 0d 01 22 13 62 6f 61  72 64 25 28 31 2c 38 2c  |...".board%(1,8,|
00000240  31 29 3d 31 0d 01 2c 05  db 0d 01 36 15 2a 53 4c  |1)=1..,....6.*SL|
00000250  4f 41 44 20 6b 6e 69 67  68 74 62 69 74 73 0d 01  |OAD knightbits..|
00000260  40 0e f2 64 72 61 77 62  6f 61 72 64 0d 01 4a 1c  |@..drawboard..J.|
00000270  f1 8a 32 35 2c 32 39 29  22 52 45 41 44 59 20 54  |..25,29)"READY T|
00000280  4f 20 42 45 47 49 4e 22  0d 01 54 0a c8 97 20 ee  |O BEGIN"..T... .|
00000290  20 31 0d 01 5e 05 f5 0d  01 68 05 f5 0d 01 72 09  | 1..^....h....r.|
000002a0  f2 6d 6f 76 65 0d 01 7c  1a fd 20 76 61 6c 69 64  |.move..|.. valid|
000002b0  25 3d b9 20 84 20 66 69  6e 69 73 68 25 3d b9 0d  |%=. . finish%=..|
000002c0  01 86 11 e7 20 66 69 6e  69 73 68 25 3d a3 20 8c  |.... finish%=. .|
000002d0  0d 01 90 0d f2 6d 6f 76  65 62 69 74 73 0d 01 9a  |.....movebits...|
000002e0  0d f2 69 73 69 74 64 6f  6e 65 0d 01 a4 05 cd 0d  |..isitdone......|
000002f0  01 ae 19 fd 20 64 6f 6e  65 25 3d b9 20 84 20 66  |.... done%=. . f|
00000300  69 6e 69 73 68 25 3d b9  0d 01 b8 0e f2 70 6c 61  |inish%=......pla|
00000310  79 61 67 61 69 6e 0d 01  c2 0c fd 70 6c 61 79 25  |yagain.....play%|
00000320  3d a3 0d 01 cc 05 e0 0d  01 d6 0f dd f2 64 72 61  |=............dra|
00000330  77 62 6f 61 72 64 0d 01  e0 11 e3 68 6f 72 69 7a  |wboard.....horiz|
00000340  25 3d 31 20 b8 20 38 0d  01 ea 11 e3 76 65 72 74  |%=1 . 8.....vert|
00000350  25 3d 20 31 20 b8 20 38  0d 01 f4 09 e6 20 30 2c  |%= 1 . 8..... 0,|
00000360  30 0d 01 fe 30 ef 20 32  33 2c 32 37 2c 30 2c 62  |0...0. 23,27,0,b|
00000370  6f 61 72 64 25 28 68 6f  72 69 7a 25 2c 76 65 72  |oard%(horiz%,ver|
00000380  74 25 2c 30 29 2c 30 2c  30 2c 30 2c 30 2c 30 2c  |t%,0),0,0,0,0,0,|
00000390  30 0d 02 08 21 f0 20 26  45 44 2c 39 36 2a 68 6f  |0...!. &ED,96*ho|
000003a0  72 69 7a 25 2c 28 39 36  2a 76 65 72 74 25 29 2b  |riz%,(96*vert%)+|
000003b0  35 30 0d 02 12 3a e7 20  76 65 72 74 25 3d 6e 6f  |50...:. vert%=no|
000003c0  77 79 25 20 80 20 68 6f  72 69 7a 25 3d 6e 6f 77  |wy% . horiz%=now|
000003d0  78 25 20 8c 20 6e 6f 70  69 65 63 65 25 3d 30 20  |x% . nopiece%=0 |
000003e0  8b 20 6e 6f 70 69 65 63  65 25 3d 31 0d 02 1c 12  |. nopiece%=1....|
000003f0  e7 20 6e 6f 70 69 65 63  65 25 3d 30 20 8c 0d 02  |. nopiece%=0 ...|
00000400  26 1b ef 20 32 33 2c 32  37 2c 30 2c 34 2c 30 2c  |&.. 23,27,0,4,0,|
00000410  30 2c 30 2c 30 2c 30 2c  30 0d 02 30 09 e6 20 38  |0,0,0,0,0..0.. 8|
00000420  2c 30 0d 02 3a 21 f0 20  26 45 44 2c 39 36 2a 68  |,0..:!. &ED,96*h|
00000430  6f 72 69 7a 25 2c 28 39  36 2a 76 65 72 74 25 29  |oriz%,(96*vert%)|
00000440  2b 35 30 0d 02 44 05 cd  0d 02 4e 05 ed 0d 02 58  |+50..D....N....X|
00000450  05 ed 0d 02 62 05 e1 0d  02 6c 0a dd f2 6d 6f 76  |....b....l...mov|
00000460  65 0d 02 76 05 f5 0d 02  80 19 c8 97 78 70 6f 73  |e..v........xpos|
00000470  25 2c 79 70 6f 73 25 2c  62 75 74 74 6f 6e 25 0d  |%,ypos%,button%.|
00000480  02 8a 0f fd 20 62 75 74  74 6f 6e 25 3d 30 0d 02  |.... button%=0..|
00000490  94 05 f5 0d 02 9e 19 c8  97 78 70 6f 73 25 2c 79  |.........xpos%,y|
000004a0  70 6f 73 25 2c 62 75 74  74 6f 6e 25 0d 02 a8 10  |pos%,button%....|
000004b0  fd 20 62 75 74 74 6f 6e  25 3c 3e 30 0d 02 b2 12  |. button%<>0....|
000004c0  e7 20 62 75 74 74 6f 6e  25 3c 3e 32 20 8c 0d 02  |. button%<>2 ...|
000004d0  bc 0c 76 61 6c 69 64 25  3d a3 0d 02 c6 16 78 73  |..valid%=.....xs|
000004e0  65 6c 25 3d 28 78 70 6f  73 25 20 81 20 39 36 29  |el%=(xpos% . 96)|
000004f0  0d 02 d0 1a 79 73 65 6c  25 3d 28 28 79 70 6f 73  |....ysel%=((ypos|
00000500  25 2d 35 30 29 81 20 39  36 29 0d 02 da 2d e7 20  |%-50). 96)...-. |
00000510  78 73 65 6c 25 3e 30 20  80 20 78 73 65 6c 25 3c  |xsel%>0 . xsel%<|
00000520  39 20 80 20 79 73 65 6c  25 3e 30 20 80 20 79 73  |9 . ysel%>0 . ys|
00000530  65 6c 25 3c 39 20 8c 0d  02 e4 1f e7 20 62 6f 61  |el%<9 ...... boa|
00000540  72 64 25 28 78 73 65 6c  25 2c 79 73 65 6c 25 2c  |rd%(xsel%,ysel%,|
00000550  31 29 3d 30 20 8c 0d 02  ee 34 e7 20 94 28 78 73  |1)=0 ....4. .(xs|
00000560  65 6c 25 2d 6e 6f 77 78  25 29 3d 31 20 80 20 94  |el%-nowx%)=1 . .|
00000570  28 79 73 65 6c 25 2d 6e  6f 77 79 25 29 3d 32 20  |(ysel%-nowy%)=2 |
00000580  8c 20 76 61 6c 69 64 25  3d b9 0d 02 f8 34 e7 20  |. valid%=....4. |
00000590  94 28 78 73 65 6c 25 2d  6e 6f 77 78 25 29 3d 32  |.(xsel%-nowx%)=2|
000005a0  20 80 20 94 28 79 73 65  6c 25 2d 6e 6f 77 79 25  | . .(ysel%-nowy%|
000005b0  29 3d 31 20 8c 20 76 61  6c 69 64 25 3d b9 0d 03  |)=1 . valid%=...|
000005c0  02 05 cd 0d 03 0c 05 cd  0d 03 16 11 e7 20 76 61  |............. va|
000005d0  6c 69 64 25 3d b9 20 20  8c 0d 03 20 1b 62 6f 61  |lid%=.  ... .boa|
000005e0  72 64 25 28 78 73 65 6c  25 2c 79 73 65 6c 25 2c  |rd%(xsel%,ysel%,|
000005f0  31 29 3d 31 0d 03 2a 13  6d 6f 76 65 73 25 3d 6d  |1)=1..*.moves%=m|
00000600  6f 76 65 73 25 2b 31 0d  03 34 26 f1 8a 32 35 2c  |oves%+1..4&..25,|
00000610  32 39 29 22 4e 55 4d 42  45 52 20 4f 46 20 4d 4f  |29)"NUMBER OF MO|
00000620  56 45 53 20 3d 22 3b 6d  6f 76 65 73 25 0d 03 3e  |VES =";moves%..>|
00000630  05 cd 0d 03 48 05 cd 0d  03 52 1b e7 20 62 75 74  |....H....R.. but|
00000640  74 6f 6e 25 3d 32 20 8c  20 66 69 6e 69 73 68 25  |ton%=2 . finish%|
00000650  3d b9 0d 03 5c 05 e1 0d  03 66 0e dd f2 6d 6f 76  |=...\....f...mov|
00000660  65 62 69 74 73 0d 03 70  25 74 65 6d 70 66 72 65  |ebits..p%tempfre|
00000670  65 78 25 3d 6e 6f 77 78  25 3a 74 65 6d 70 66 72  |ex%=nowx%:tempfr|
00000680  65 65 79 25 3d 6e 6f 77  79 25 0d 03 7a 09 e6 20  |eey%=nowy%..z.. |
00000690  38 2c 30 0d 03 84 1b ef  20 32 33 2c 32 37 2c 30  |8,0..... 23,27,0|
000006a0  2c 32 2c 30 2c 30 2c 30  2c 30 2c 30 2c 30 0d 03  |,2,0,0,0,0,0,0..|
000006b0  8e 20 f0 20 26 45 44 2c  39 36 2a 6e 6f 77 78 25  |. . &ED,96*nowx%|
000006c0  2c 28 39 36 2a 6e 6f 77  79 25 29 2b 35 30 0d 03  |,(96*nowy%)+50..|
000006d0  98 1b 6e 6f 77 78 25 3d  78 73 65 6c 25 3a 6e 6f  |..nowx%=xsel%:no|
000006e0  77 79 25 3d 79 73 65 6c  25 0d 03 a2 1b ef 20 32  |wy%=ysel%..... 2|
000006f0  33 2c 32 37 2c 30 2c 34  2c 30 2c 30 2c 30 2c 30  |3,27,0,4,0,0,0,0|
00000700  2c 30 2c 30 0d 03 ac 20  f0 20 26 45 44 2c 39 36  |,0,0... . &ED,96|
00000710  2a 78 73 65 6c 25 2c 28  39 36 2a 79 73 65 6c 25  |*xsel%,(96*ysel%|
00000720  29 2b 35 30 0d 03 b6 05  e1 0d 03 c0 0e dd f2 69  |)+50...........i|
00000730  73 69 74 64 6f 6e 65 0d  03 ca 0b f1 8a 33 30 2c  |sitdone......30,|
00000740  32 29 0d 03 d4 11 e7 20  6d 6f 76 65 73 25 3d 36  |2)..... moves%=6|
00000750  33 20 8c 0d 03 de 0b 64  6f 6e 65 25 3d b9 0d 03  |3 .....done%=...|
00000760  e8 2f f1 8a 31 31 2c 32  38 29 22 20 43 4f 4e 47  |./..11,28)" CONG|
00000770  52 41 54 55 4c 41 54 49  4f 4e 53 20 50 55 5a 5a  |RATULATIONS PUZZ|
00000780  4c 45 20 43 4f 4d 50 4c  45 54 45 44 22 0d 03 f2  |LE COMPLETED"...|
00000790  05 cd 0d 03 fc 05 e1 0d  04 06 0f dd f2 70 6c 61  |.............pla|
000007a0  79 61 67 61 69 6e 0d 04  10 54 f1 8a 31 2c 32 39  |yagain...T..1,29|
000007b0  29 22 50 52 45 53 53 20  4c 45 46 54 20 4d 4f 55  |)"PRESS LEFT MOU|
000007c0  53 45 20 42 55 54 54 4f  4e 20 54 4f 20 50 4c 41  |SE BUTTON TO PLA|
000007d0  59 20 41 47 41 49 4e 2c  41 4e 59 20 4f 54 48 45  |Y AGAIN,ANY OTHE|
000007e0  52 20 42 55 54 54 4f 4e  20 54 4f 20 4c 45 41 56  |R BUTTON TO LEAV|
000007f0  45 20 50 52 4f 47 52 41  4d 22 0d 04 1a 28 f5 3a  |E PROGRAM"...(.:|
00000800  c8 97 78 70 6f 73 25 2c  79 70 6f 73 25 2c 62 75  |..xpos%,ypos%,bu|
00000810  74 74 6f 6e 25 20 3a fd  20 62 75 74 74 6f 6e 25  |tton% :. button%|
00000820  3d 30 0d 04 24 29 f5 3a  c8 97 78 70 6f 73 25 2c  |=0..$).:..xpos%,|
00000830  79 70 6f 73 25 2c 62 75  74 74 6f 6e 25 20 3a fd  |ypos%,button% :.|
00000840  20 62 75 74 74 6f 6e 25  3c 3e 30 0d 04 2e 23 e7  | button%<>0...#.|
00000850  20 62 75 74 74 6f 6e 25  3d 34 20 8c 20 70 6c 61  | button%=4 . pla|
00000860  79 25 3d b9 20 8b 20 70  6c 61 79 25 3d a3 0d 04  |y%=. . play%=...|
00000870  38 05 e1 0d ff                                    |8....|
00000875