Home » Archimedes archive » Micro User » MU 1991-10.adf » Listings » Arc/!Surgeon/BRAIN

Arc/!Surgeon/BRAIN

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 » Micro User » MU 1991-10.adf » Listings
Filename: Arc/!Surgeon/BRAIN
Read OK:
File size: 08E8 bytes
Load address: 0000
Exec address: 0000
File contents
   10REM >!Surgeon.BRAIN
   20REM Thanks to Jason Williams for the P.D. Sound Player
   30DIM PBK% 3,S%(8),L%(8),Sp%(8),pts%(11)
   40ON ERROR PROCrelease
   50pt%=0
   60PROCsLoad
   70?PBK%=&FF
   80SYS "IIC_Control",&70,PBK%,1
   90MODE 1
  100PRINT"BRAIN SURGEON"
  110PRINT" By Mike Cook"
  120PRINT"Using the IIC interface card"
  130PRINT TAB(0,14)"Score"
  140REPEAT:REPEAT
  150PRINT TAB(0,23)"Put in place all the pieces of Brain"
  160  REPEAT
  170  SYS "IIC_Control",&71,PBK%,1
  180  UNTIL ?PBK%=&80
  190  PRINT TAB(0,23)"Now begin to remove the Brain Tumours"
  200  PRINTTAB(0,17);SPC(39)
  210  PRINTTAB(0,19);SPC(39)
  220 TIME=0
  230 REPEAT UNTIL TIME > 200
  240 SYS "IIC_Control",&71,PBK%,1
  250UNTIL ?PBK%=&80
  260SCORE=0:T%=0
  270REPEAT
  280SYS "IIC_Control",&71,PBK%,1
  290A%=?PBK%
  300FOR B%=0 TO 6
  310IF (A% AND 1<<B%)<>0 AND (T% AND 1<<B%)=0 THEN
  320   T%=T% OR 1<<B%
  330   SCORE+=1
  340   PROCplay(S%(B%),L%(B%),Sp%(B%))
  350ENDIF
  360NEXT
  370PRINT TAB(0,14);"Score ",SCORE
  380UNTIL (A% AND &80)=0 OR (T%=&7F)
  390TM%=TIME
  400IF T%=&7F THEN
  410PRINT TAB(0,17)"Congratulations! Your patient survived. "
  420TIME=0
  430REPEAT UNTIL TIME>300
  440PROCplay(S%(8),L%(8),Sp%(8))
  450ELSE
  460PRINT TAB(0,23)"Put in place all the pieces of Brain"
  470PRINT TAB(0,17)"Sorry - your patient died"
  480PROCplay(S%(7),L%(7),Sp%(7))
  490ENDIF
  500PRINTTAB(0,19);"You took ";TM%/100;" Seconds"
  510UNTIL FALSE
  520
  530DEF PROCsLoad
  540PROCinit
  550PROCinitdriver
  560FOR A%=0 TO 8
  570READ S$,Sp%(A%)
  580PROCloadfile(S%(A%),L%(A%),S$)
  590NEXT
  600ENDPROC
  610DATA Bubbles,94,Bark,94,Cymbal,94,Duck,50,Gasp,94,Umph,94
  620DATA Howl,94,Ayaaaah,94,Applause,94
  630
  640DEF PROCinit
  650LOCAL colms%,rows%,cols%
  660driver%=FNclaim(2048)
  670IF driver%=0 THEN PRINT"Not enough memory for driver":END
  680ENDPROC
  690
  700DEF PROCloadfile(RETURN start%,RETURN length%,S$)
  710LOCAL ch%,l%,rs%
  720n$="<Brain$Dir>."+S$
  730rs%=16*1024
  740ch%=OPENIN(n$):IF ch%=0 THEN CLOSE#ch%:start%=-1:ENDPROC
  750length%=EXT#ch%
  760CLOSE#ch%
  770l%=((length%DIVrs%)+1)*rs%
  780start%=FNclaim(l%)
  790IF start%<1 THEN PRINT"Not enough memory for sample":ENDPROC
  800
  810OSCLI("LOAD "+n$+" "+STR$~start%)
  820ENDPROC
  830
  840DEF PROCinitdriver
  850OSCLI("*LO. <Brain$Dir>.Speaker "+STR$~driver%)
  860CALL driver%+&F4
  870ENDPROC
  880
  890DEF PROCplay(start%,length%,speed%)
  900
  910driver%!0=start%
  920driver%!4=start%+length%
  930driver%?&1C=speed%
  940
  950*VOLUME 127
  960*CHA. 1 8
  970SOUND 1,-127,255,255
  980*FX21
  990ENDPROC
 1000
 1010DEF FNclaim(size%)
 1020SYS "OS_Module",6,,,size% TO ,,ptr%;flags%
 1030IF ptr%<1 OR flags%<>6 THEN PRINT"Not enough room in RMA":END
 1040pt%+=1
 1050pts%(pt%)=ptr%
 1060=ptr%
 1070
 1080DEF PROCrelease
 1090IF pt%<>0 THEN
 1100FOR A%=1 TO pt%
 1110SYS "OS_Module",7,,pts%(A%)
 1120NEXT
 1130ENDIF
 1140QUIT
 1150ENDPROC

� >!Surgeon.BRAIN
8� Thanks to Jason Williams for the P.D. Sound Player
(� PBK% 3,S%(8),L%(8),Sp%(8),pts%(11)
(� � �release
2	pt%=0
<
�sLoad
F
?PBK%=&FF
Pș "IIC_Control",&70,PBK%,1
Z� 1
d�"BRAIN SURGEON"
n�" By Mike Cook"
x#�"Using the IIC interface card"
�� �0,14)"Score"
��:�
�2� �0,23)"Put in place all the pieces of Brain"
�  �
�!  ș "IIC_Control",&71,PBK%,1
�  � ?PBK%=&80
�5  � �0,23)"Now begin to remove the Brain Tumours"
�  �0,17);�(39)
�  �0,19);�(39)
� �=0
� � � � > 200
�  ș "IIC_Control",&71,PBK%,1
�� ?PBK%=&80
SCORE=0:T%=0
�
ș "IIC_Control",&71,PBK%,1
"A%=?PBK%
,� B%=0 � 6
6(� (A% � 1<<B%)<>0 � (T% � 1<<B%)=0 �
@   T%=T% � 1<<B%
J   SCORE+=1
T#   �play(S%(B%),L%(B%),Sp%(B%))
^�
h�
r� �0,14);"Score ",SCORE
|� (A% � &80)=0 � (T%=&7F)
�	TM%=�
�� T%=&7F �
�6� �0,17)"Congratulations! Your patient survived. "
��=0
�
� � �>300
��play(S%(8),L%(8),Sp%(8))
��
�2� �0,23)"Put in place all the pieces of Brain"
�'� �0,17)"Sorry - your patient died"
��play(S%(7),L%(7),Sp%(7))
��
�*�0,19);"You took ";TM%/100;" Seconds"
�� �

� �sLoad
	�init
&�initdriver
0� A%=0 � 8
:� S$,Sp%(A%)
D�loadfile(S%(A%),L%(A%),S$)
N�
X�
b:� Bubbles,94,Bark,94,Cymbal,94,Duck,50,Gasp,94,Umph,94
l$� Howl,94,Ayaaaah,94,Applause,94
v
�� �init
�� colms%,rows%,cols%
�driver%=�claim(2048)
�3� driver%=0 � �"Not enough memory for driver":�
��
�
�&� �loadfile(� start%,� length%,S$)
�� ch%,l%,rs%
�n$="<Brain$Dir>."+S$
�rs%=16*1024
�)ch%=�(n$):� ch%=0 � �#ch%:start%=-1:�
�length%=�#ch%
�	�#ch%
l%=((length%�rs%)+1)*rs%
start%=�claim(l%)
2� start%<1 � �"Not enough memory for sample":�
 
*�("LOAD "+n$+" "+�~start%)
4�
>
H� �initdriver
R,�("*LO. <Brain$Dir>.Speaker "+�~driver%)
\� driver%+&F4
f�
p
z"� �play(start%,length%,speed%)
�
�driver%!0=start%
�driver%!4=start%+length%
�driver%?&1C=speed%
�
�*VOLUME 127
�
*CHA. 1 8
�� 1,-127,255,255
�	*FX21
��
�
�� �claim(size%)
�,ș "OS_Module",6,,,size% � ,,ptr%;flags%
6� ptr%<1 � flags%<>6 � �"Not enough room in RMA":�

pt%+=1
pts%(pt%)=ptr%
$	=ptr%
.
8� �release
B� pt%<>0 �
L� A%=1 � pt%
Vș "OS_Module",7,,pts%(A%)
`�
j�
tȘ
~�
�
00000000  0d 00 0a 15 f4 20 3e 21  53 75 72 67 65 6f 6e 2e  |..... >!Surgeon.|
00000010  42 52 41 49 4e 0d 00 14  38 f4 20 54 68 61 6e 6b  |BRAIN...8. Thank|
00000020  73 20 74 6f 20 4a 61 73  6f 6e 20 57 69 6c 6c 69  |s to Jason Willi|
00000030  61 6d 73 20 66 6f 72 20  74 68 65 20 50 2e 44 2e  |ams for the P.D.|
00000040  20 53 6f 75 6e 64 20 50  6c 61 79 65 72 0d 00 1e  | Sound Player...|
00000050  28 de 20 50 42 4b 25 20  33 2c 53 25 28 38 29 2c  |(. PBK% 3,S%(8),|
00000060  4c 25 28 38 29 2c 53 70  25 28 38 29 2c 70 74 73  |L%(8),Sp%(8),pts|
00000070  25 28 31 31 29 0d 00 28  10 ee 20 85 20 f2 72 65  |%(11)..(.. . .re|
00000080  6c 65 61 73 65 0d 00 32  09 70 74 25 3d 30 0d 00  |lease..2.pt%=0..|
00000090  3c 0a f2 73 4c 6f 61 64  0d 00 46 0d 3f 50 42 4b  |<..sLoad..F.?PBK|
000000a0  25 3d 26 46 46 0d 00 50  1f c8 99 20 22 49 49 43  |%=&FF..P... "IIC|
000000b0  5f 43 6f 6e 74 72 6f 6c  22 2c 26 37 30 2c 50 42  |_Control",&70,PB|
000000c0  4b 25 2c 31 0d 00 5a 07  eb 20 31 0d 00 64 14 f1  |K%,1..Z.. 1..d..|
000000d0  22 42 52 41 49 4e 20 53  55 52 47 45 4f 4e 22 0d  |"BRAIN SURGEON".|
000000e0  00 6e 14 f1 22 20 42 79  20 4d 69 6b 65 20 43 6f  |.n.." By Mike Co|
000000f0  6f 6b 22 0d 00 78 23 f1  22 55 73 69 6e 67 20 74  |ok"..x#."Using t|
00000100  68 65 20 49 49 43 20 69  6e 74 65 72 66 61 63 65  |he IIC interface|
00000110  20 63 61 72 64 22 0d 00  82 13 f1 20 8a 30 2c 31  | card"..... .0,1|
00000120  34 29 22 53 63 6f 72 65  22 0d 00 8c 07 f5 3a f5  |4)"Score".....:.|
00000130  0d 00 96 32 f1 20 8a 30  2c 32 33 29 22 50 75 74  |...2. .0,23)"Put|
00000140  20 69 6e 20 70 6c 61 63  65 20 61 6c 6c 20 74 68  | in place all th|
00000150  65 20 70 69 65 63 65 73  20 6f 66 20 42 72 61 69  |e pieces of Brai|
00000160  6e 22 0d 00 a0 07 20 20  f5 0d 00 aa 21 20 20 c8  |n"....  ....!  .|
00000170  99 20 22 49 49 43 5f 43  6f 6e 74 72 6f 6c 22 2c  |. "IIC_Control",|
00000180  26 37 31 2c 50 42 4b 25  2c 31 0d 00 b4 11 20 20  |&71,PBK%,1....  |
00000190  fd 20 3f 50 42 4b 25 3d  26 38 30 0d 00 be 35 20  |. ?PBK%=&80...5 |
000001a0  20 f1 20 8a 30 2c 32 33  29 22 4e 6f 77 20 62 65  | . .0,23)"Now be|
000001b0  67 69 6e 20 74 6f 20 72  65 6d 6f 76 65 20 74 68  |gin to remove th|
000001c0  65 20 42 72 61 69 6e 20  54 75 6d 6f 75 72 73 22  |e Brain Tumours"|
000001d0  0d 00 c8 13 20 20 f1 8a  30 2c 31 37 29 3b 89 28  |....  ..0,17);.(|
000001e0  33 39 29 0d 00 d2 13 20  20 f1 8a 30 2c 31 39 29  |39)....  ..0,19)|
000001f0  3b 89 28 33 39 29 0d 00  dc 08 20 d1 3d 30 0d 00  |;.(39).... .=0..|
00000200  e6 10 20 f5 20 fd 20 91  20 3e 20 32 30 30 0d 00  |.. . . . > 200..|
00000210  f0 20 20 c8 99 20 22 49  49 43 5f 43 6f 6e 74 72  |.  .. "IIC_Contr|
00000220  6f 6c 22 2c 26 37 31 2c  50 42 4b 25 2c 31 0d 00  |ol",&71,PBK%,1..|
00000230  fa 0f fd 20 3f 50 42 4b  25 3d 26 38 30 0d 01 04  |... ?PBK%=&80...|
00000240  10 53 43 4f 52 45 3d 30  3a 54 25 3d 30 0d 01 0e  |.SCORE=0:T%=0...|
00000250  05 f5 0d 01 18 1f c8 99  20 22 49 49 43 5f 43 6f  |........ "IIC_Co|
00000260  6e 74 72 6f 6c 22 2c 26  37 31 2c 50 42 4b 25 2c  |ntrol",&71,PBK%,|
00000270  31 0d 01 22 0c 41 25 3d  3f 50 42 4b 25 0d 01 2c  |1..".A%=?PBK%..,|
00000280  0e e3 20 42 25 3d 30 20  b8 20 36 0d 01 36 28 e7  |.. B%=0 . 6..6(.|
00000290  20 28 41 25 20 80 20 31  3c 3c 42 25 29 3c 3e 30  | (A% . 1<<B%)<>0|
000002a0  20 80 20 28 54 25 20 80  20 31 3c 3c 42 25 29 3d  | . (T% . 1<<B%)=|
000002b0  30 20 8c 0d 01 40 14 20  20 20 54 25 3d 54 25 20  |0 ...@.   T%=T% |
000002c0  84 20 31 3c 3c 42 25 0d  01 4a 0f 20 20 20 53 43  |. 1<<B%..J.   SC|
000002d0  4f 52 45 2b 3d 31 0d 01  54 23 20 20 20 f2 70 6c  |ORE+=1..T#   .pl|
000002e0  61 79 28 53 25 28 42 25  29 2c 4c 25 28 42 25 29  |ay(S%(B%),L%(B%)|
000002f0  2c 53 70 25 28 42 25 29  29 0d 01 5e 05 cd 0d 01  |,Sp%(B%))..^....|
00000300  68 05 ed 0d 01 72 1b f1  20 8a 30 2c 31 34 29 3b  |h....r.. .0,14);|
00000310  22 53 63 6f 72 65 20 22  2c 53 43 4f 52 45 0d 01  |"Score ",SCORE..|
00000320  7c 1d fd 20 28 41 25 20  80 20 26 38 30 29 3d 30  ||.. (A% . &80)=0|
00000330  20 84 20 28 54 25 3d 26  37 46 29 0d 01 86 09 54  | . (T%=&7F)....T|
00000340  4d 25 3d 91 0d 01 90 0e  e7 20 54 25 3d 26 37 46  |M%=...... T%=&7F|
00000350  20 8c 0d 01 9a 36 f1 20  8a 30 2c 31 37 29 22 43  | ....6. .0,17)"C|
00000360  6f 6e 67 72 61 74 75 6c  61 74 69 6f 6e 73 21 20  |ongratulations! |
00000370  59 6f 75 72 20 70 61 74  69 65 6e 74 20 73 75 72  |Your patient sur|
00000380  76 69 76 65 64 2e 20 22  0d 01 a4 07 d1 3d 30 0d  |vived. ".....=0.|
00000390  01 ae 0d f5 20 fd 20 91  3e 33 30 30 0d 01 b8 1d  |.... . .>300....|
000003a0  f2 70 6c 61 79 28 53 25  28 38 29 2c 4c 25 28 38  |.play(S%(8),L%(8|
000003b0  29 2c 53 70 25 28 38 29  29 0d 01 c2 05 cc 0d 01  |),Sp%(8)).......|
000003c0  cc 32 f1 20 8a 30 2c 32  33 29 22 50 75 74 20 69  |.2. .0,23)"Put i|
000003d0  6e 20 70 6c 61 63 65 20  61 6c 6c 20 74 68 65 20  |n place all the |
000003e0  70 69 65 63 65 73 20 6f  66 20 42 72 61 69 6e 22  |pieces of Brain"|
000003f0  0d 01 d6 27 f1 20 8a 30  2c 31 37 29 22 53 6f 72  |...'. .0,17)"Sor|
00000400  72 79 20 2d 20 79 6f 75  72 20 70 61 74 69 65 6e  |ry - your patien|
00000410  74 20 64 69 65 64 22 0d  01 e0 1d f2 70 6c 61 79  |t died".....play|
00000420  28 53 25 28 37 29 2c 4c  25 28 37 29 2c 53 70 25  |(S%(7),L%(7),Sp%|
00000430  28 37 29 29 0d 01 ea 05  cd 0d 01 f4 2a f1 8a 30  |(7))........*..0|
00000440  2c 31 39 29 3b 22 59 6f  75 20 74 6f 6f 6b 20 22  |,19);"You took "|
00000450  3b 54 4d 25 2f 31 30 30  3b 22 20 53 65 63 6f 6e  |;TM%/100;" Secon|
00000460  64 73 22 0d 01 fe 07 fd  20 a3 0d 02 08 04 0d 02  |ds"..... .......|
00000470  12 0c dd 20 f2 73 4c 6f  61 64 0d 02 1c 09 f2 69  |... .sLoad.....i|
00000480  6e 69 74 0d 02 26 0f f2  69 6e 69 74 64 72 69 76  |nit..&..initdriv|
00000490  65 72 0d 02 30 0e e3 20  41 25 3d 30 20 b8 20 38  |er..0.. A%=0 . 8|
000004a0  0d 02 3a 10 f3 20 53 24  2c 53 70 25 28 41 25 29  |..:.. S$,Sp%(A%)|
000004b0  0d 02 44 1f f2 6c 6f 61  64 66 69 6c 65 28 53 25  |..D..loadfile(S%|
000004c0  28 41 25 29 2c 4c 25 28  41 25 29 2c 53 24 29 0d  |(A%),L%(A%),S$).|
000004d0  02 4e 05 ed 0d 02 58 05  e1 0d 02 62 3a dc 20 42  |.N....X....b:. B|
000004e0  75 62 62 6c 65 73 2c 39  34 2c 42 61 72 6b 2c 39  |ubbles,94,Bark,9|
000004f0  34 2c 43 79 6d 62 61 6c  2c 39 34 2c 44 75 63 6b  |4,Cymbal,94,Duck|
00000500  2c 35 30 2c 47 61 73 70  2c 39 34 2c 55 6d 70 68  |,50,Gasp,94,Umph|
00000510  2c 39 34 0d 02 6c 24 dc  20 48 6f 77 6c 2c 39 34  |,94..l$. Howl,94|
00000520  2c 41 79 61 61 61 61 68  2c 39 34 2c 41 70 70 6c  |,Ayaaaah,94,Appl|
00000530  61 75 73 65 2c 39 34 0d  02 76 04 0d 02 80 0b dd  |ause,94..v......|
00000540  20 f2 69 6e 69 74 0d 02  8a 18 ea 20 63 6f 6c 6d  | .init..... colm|
00000550  73 25 2c 72 6f 77 73 25  2c 63 6f 6c 73 25 0d 02  |s%,rows%,cols%..|
00000560  94 18 64 72 69 76 65 72  25 3d a4 63 6c 61 69 6d  |..driver%=.claim|
00000570  28 32 30 34 38 29 0d 02  9e 33 e7 20 64 72 69 76  |(2048)...3. driv|
00000580  65 72 25 3d 30 20 8c 20  f1 22 4e 6f 74 20 65 6e  |er%=0 . ."Not en|
00000590  6f 75 67 68 20 6d 65 6d  6f 72 79 20 66 6f 72 20  |ough memory for |
000005a0  64 72 69 76 65 72 22 3a  e0 0d 02 a8 05 e1 0d 02  |driver":........|
000005b0  b2 04 0d 02 bc 26 dd 20  f2 6c 6f 61 64 66 69 6c  |.....&. .loadfil|
000005c0  65 28 f8 20 73 74 61 72  74 25 2c f8 20 6c 65 6e  |e(. start%,. len|
000005d0  67 74 68 25 2c 53 24 29  0d 02 c6 10 ea 20 63 68  |gth%,S$)..... ch|
000005e0  25 2c 6c 25 2c 72 73 25  0d 02 d0 18 6e 24 3d 22  |%,l%,rs%....n$="|
000005f0  3c 42 72 61 69 6e 24 44  69 72 3e 2e 22 2b 53 24  |<Brain$Dir>."+S$|
00000600  0d 02 da 0f 72 73 25 3d  31 36 2a 31 30 32 34 0d  |....rs%=16*1024.|
00000610  02 e4 29 63 68 25 3d 8e  28 6e 24 29 3a e7 20 63  |..)ch%=.(n$):. c|
00000620  68 25 3d 30 20 8c 20 d9  23 63 68 25 3a 73 74 61  |h%=0 . .#ch%:sta|
00000630  72 74 25 3d 2d 31 3a e1  0d 02 ee 11 6c 65 6e 67  |rt%=-1:.....leng|
00000640  74 68 25 3d a2 23 63 68  25 0d 02 f8 09 d9 23 63  |th%=.#ch%.....#c|
00000650  68 25 0d 03 02 1c 6c 25  3d 28 28 6c 65 6e 67 74  |h%....l%=((lengt|
00000660  68 25 81 72 73 25 29 2b  31 29 2a 72 73 25 0d 03  |h%.rs%)+1)*rs%..|
00000670  0c 15 73 74 61 72 74 25  3d a4 63 6c 61 69 6d 28  |..start%=.claim(|
00000680  6c 25 29 0d 03 16 32 e7  20 73 74 61 72 74 25 3c  |l%)...2. start%<|
00000690  31 20 8c 20 f1 22 4e 6f  74 20 65 6e 6f 75 67 68  |1 . ."Not enough|
000006a0  20 6d 65 6d 6f 72 79 20  66 6f 72 20 73 61 6d 70  | memory for samp|
000006b0  6c 65 22 3a e1 0d 03 20  04 0d 03 2a 1e ff 28 22  |le":... ...*..("|
000006c0  4c 4f 41 44 20 22 2b 6e  24 2b 22 20 22 2b c3 7e  |LOAD "+n$+" "+.~|
000006d0  73 74 61 72 74 25 29 0d  03 34 05 e1 0d 03 3e 04  |start%)..4....>.|
000006e0  0d 03 48 11 dd 20 f2 69  6e 69 74 64 72 69 76 65  |..H.. .initdrive|
000006f0  72 0d 03 52 2c ff 28 22  2a 4c 4f 2e 20 3c 42 72  |r..R,.("*LO. <Br|
00000700  61 69 6e 24 44 69 72 3e  2e 53 70 65 61 6b 65 72  |ain$Dir>.Speaker|
00000710  20 22 2b c3 7e 64 72 69  76 65 72 25 29 0d 03 5c  | "+.~driver%)..\|
00000720  11 d6 20 64 72 69 76 65  72 25 2b 26 46 34 0d 03  |.. driver%+&F4..|
00000730  66 05 e1 0d 03 70 04 0d  03 7a 22 dd 20 f2 70 6c  |f....p...z". .pl|
00000740  61 79 28 73 74 61 72 74  25 2c 6c 65 6e 67 74 68  |ay(start%,length|
00000750  25 2c 73 70 65 65 64 25  29 0d 03 84 04 0d 03 8e  |%,speed%).......|
00000760  14 64 72 69 76 65 72 25  21 30 3d 73 74 61 72 74  |.driver%!0=start|
00000770  25 0d 03 98 1c 64 72 69  76 65 72 25 21 34 3d 73  |%....driver%!4=s|
00000780  74 61 72 74 25 2b 6c 65  6e 67 74 68 25 0d 03 a2  |tart%+length%...|
00000790  16 64 72 69 76 65 72 25  3f 26 31 43 3d 73 70 65  |.driver%?&1C=spe|
000007a0  65 64 25 0d 03 ac 04 0d  03 b6 0f 2a 56 4f 4c 55  |ed%........*VOLU|
000007b0  4d 45 20 31 32 37 0d 03  c0 0d 2a 43 48 41 2e 20  |ME 127....*CHA. |
000007c0  31 20 38 0d 03 ca 14 d4  20 31 2c 2d 31 32 37 2c  |1 8..... 1,-127,|
000007d0  32 35 35 2c 32 35 35 0d  03 d4 09 2a 46 58 32 31  |255,255....*FX21|
000007e0  0d 03 de 05 e1 0d 03 e8  04 0d 03 f2 13 dd 20 a4  |.............. .|
000007f0  63 6c 61 69 6d 28 73 69  7a 65 25 29 0d 03 fc 2c  |claim(size%)...,|
00000800  c8 99 20 22 4f 53 5f 4d  6f 64 75 6c 65 22 2c 36  |.. "OS_Module",6|
00000810  2c 2c 2c 73 69 7a 65 25  20 b8 20 2c 2c 70 74 72  |,,,size% . ,,ptr|
00000820  25 3b 66 6c 61 67 73 25  0d 04 06 36 e7 20 70 74  |%;flags%...6. pt|
00000830  72 25 3c 31 20 84 20 66  6c 61 67 73 25 3c 3e 36  |r%<1 . flags%<>6|
00000840  20 8c 20 f1 22 4e 6f 74  20 65 6e 6f 75 67 68 20  | . ."Not enough |
00000850  72 6f 6f 6d 20 69 6e 20  52 4d 41 22 3a e0 0d 04  |room in RMA":...|
00000860  10 0a 70 74 25 2b 3d 31  0d 04 1a 12 70 74 73 25  |..pt%+=1....pts%|
00000870  28 70 74 25 29 3d 70 74  72 25 0d 04 24 09 3d 70  |(pt%)=ptr%..$.=p|
00000880  74 72 25 0d 04 2e 04 0d  04 38 0e dd 20 f2 72 65  |tr%......8.. .re|
00000890  6c 65 61 73 65 0d 04 42  0e e7 20 70 74 25 3c 3e  |lease..B.. pt%<>|
000008a0  30 20 8c 0d 04 4c 10 e3  20 41 25 3d 31 20 b8 20  |0 ...L.. A%=1 . |
000008b0  70 74 25 0d 04 56 1e c8  99 20 22 4f 53 5f 4d 6f  |pt%..V... "OS_Mo|
000008c0  64 75 6c 65 22 2c 37 2c  2c 70 74 73 25 28 41 25  |dule",7,,pts%(A%|
000008d0  29 0d 04 60 05 ed 0d 04  6a 05 cd 0d 04 74 06 c8  |)..`....j....t..|
000008e0  98 0d 04 7e 05 e1 0d ff                           |...~....|
000008e8