Home » Archimedes archive » Micro User » MU 1990-11.adf » 8BitStuff » Gen

Gen

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 1990-11.adf » 8BitStuff
Filename: Gen
Read OK:
File size: 110A bytes
Load address: 0000
Exec address: 0000
Duplicates

There is 1 duplicate copy of this file in the archive:

File contents
   10REM > X.GEN
   20REM Menu Data Creator
   30REM by Steve Turnbull
   40REM (c) Database Publications
   50PROCinit
   60PROCreaddata
   70PROCassm
   80OSCLI("SAVE FDATA "+STR$~data+"+"+STR$~Q%+" 0 0")
   90END
  100DEF PROCinit
  110DIM data &C00
  120base=&2000
  130FORI%=data TOdata+&C00-1STEP4
  140!I%=0:NEXT
  150files$="ACDT"
  160types$="BDELRS"
  170mchns$="ABCMPZ"
  180ENDPROC
  190DEF PROCreaddata
  200READ v$,n$,m$,y$,noof
  210DIM n$(noof),p$(noof),f$(noof)
  220DIM m$(noof),t$(noof),s$(noof)
  230DIM h$(noof)
  240FOR F%=0 TO noof-1
  250READ n$(F%),p$(F%),f$(F%)
  260READ m$(F%),t$(F%),s$(F%),h$(F%)
  265PRINTn$(F%)'p$(F%)'f$(F%)'m$(F%)'t$(F%)'s$(F%)'h$(F%)'
  270NEXT:ENDPROC
  280File structure:
  290Number of files      --  1 byte
  300Offset to Volume     --  2 bytes
  310Offset to Issue      --  2 bytes
  320Offset to Date       --  2 bytes
  330Offset of type table --  2 bytes
  340Offset of mach table --  2 bytes
  350Offset of FS table   --  2 bytes
  360Offset of name offs  --  2 bytes
  370Offset of page offs  --  2 bytes
  380Offset of fnam offs  --  2 bytes
  390Offset of help offs  --  2 bytes
  400Type table           --  n bytes
  410Machines table       --  n bytes
  420FS table             --  n bytes
  430Offsets to name      -- 2n bytes
  440Offsets to page      -- 2n bytes
  450Offsets to filename  -- 2n bytes
  460Offsets to help      -- 2n bytes
  470Start of strings     -- 21+11n bytes
  480DEF PROCassm
  490O%=0:R%=21:Q%=R%+11*noof
  500PROCb(noof)
  510PROCw(Q%):PROCx(784,988,"Volume"+FNf(v$,3))
  520PROCw(Q%):PROCx(784,946,"Issue"+FNf(n$,3))
  530PROCw(Q%):PROCx(784,902,m$+" "+y$)
  540PROCw(R%):R%=R%+noof
  550PROCw(R%):R%=R%+noof
  560PROCw(R%):R%=R%+noof
  570PROCw(R%):R%=R%+2*noof
  580PROCw(R%):R%=R%+2*noof
  590PROCw(R%):R%=R%+2*noof
  600PROCw(R%):R%=R%+2*noof
  610FOR F%=0 TO noof-1
  620PROCbyte(t$(F%),types$):NEXT
  630FOR F%=0 TO noof-1
  640PROCbyte(m$(F%),mchns$):NEXT
  650FOR F%=0 TO noof-1
  660PROCbyte(s$(F%),files$):NEXT
  670FOR F%=0 TO noof-1
  680PROCw(Q%):PROCstr(n$(F%)):NEXT
  690FOR F%=0 TO noof-1:PROCw(Q%)
  700PROCstr(FNf(p$(F%),3)):NEXT
  710FOR F%=0 TO noof-1:PROCw(Q%)
  720PROCstr("*K.10 "+f$(F%)):NEXT
  730FOR F%=0 TO noof-1:PROCw(Q%)
  740PROCstr(FNj(h$(F%),33)+CHR$0):NEXT
  750ENDPROC
  760DEF FNj(t$,W%)
  770LOCAL l$,s$,w$:t$=t$+" "
  780REPEAT w$=FNwd
  790IF LENw$+LENl$>=W% s$=s$+l$+CHR$10+CHR$13:l$=w$ ELSE l$=l$+" "+w$
  800UNTIL t$="":=MID$(s$+l$,2)
  810DEF FNwd:LOCAL C%,w$:IF t$="" =""
  820C%=INSTR(t$," "):w$=LEFT$(t$,C%-1)
  830t$=MID$(t$,C%+1):=w$
  840DEF PROCb(B%)
  850data?O%=B%:O%=O%+1:ENDPROC
  860DEF PROCw(W%)
  870W%=W%+base:PROCb(W%MOD256)
  880PROCb(W%DIV256):ENDPROC
  890DEF FNf(x$,L%)=RIGHT$(STRING$(L%," ")+x$,L%)
  900DEF PROCx(X%,Y%,t$)
  910PROCwq(X%):PROCwq(Y%)
  920PROCstr(t$+CHR$13):ENDPROC
  930DEF PROCwq(W%):PROCbq(W%MOD256)
  940PROCbq(W%DIV256):ENDPROC
  950DEF PROCbq(B%)
  960data?Q%=B%:Q%=Q%+1:ENDPROC
  970DEF PROCstr(x$):$(data+Q%)=x$
  980Q%=Q%+LENx$+1:ENDPROC
  990DEF PROCbyte(x$,k$)
 1000LOCAL B%,L%,P%,Z%:B%=1
 1010L%=LENk$:IF L%>8 ERROR
 1020FOR P%=1 TO L%
 1030Z%=Z%OR((INSTR(x$,MID$(k$,P%,1))>0)ANDB%)
 1040B%=B%+B%:NEXT
 1050PROCb(Z%):ENDPROC
 1060Issue:    Volume, Issue, Month, Year
 1070Files:    Number of
 1080Name:     Text string <30 characters
 1090Page:     Page number (string)
 1100Run:      String
 1110Machine:  A = Archimedes
 1120          B = BBC B
 1130          C = Compact
 1140          M = Master
 1150          P = B+
 1160          Z = Z88
 1170Type:     B = Basic
 1180          D = Data
 1190          E = *EXECable file
 1200          L = *LOADable file
 1210          R = *RUNable file
 1220          S = *SRLOADable file
 1230          T = Text
 1240FS:       A = ADFS
 1250          C = CFS
 1260          D = DFS
 1270          T = Teletext
 1280          I = IEEE
 1290Help:     Help text
 1300DATA 8,9,November,1990
 1310DATA 10
 1320DATA Danger Dog,47
 1321DATA PAGE=&1900:CH."Danger1"|M,BCMP,B,ADC
 1322DATA Great arcade adventure with the Danger Dog
 1330DATA Extended Palette,63
 1331DATA PAGE=&1900:CH."ExtPal"|M,BCMP,B,ADC
 1332DATA Flashy (pun) colour mixing technique (not for Electron)
 1340DATA PI,28
 1341DATA PAGE=&1900:CH."PiCalc"|M,ABCMP,B,ADC
 1342DATA AT LAST! How to calculate PI in three different ways.
 1350DATA WW+DB: Routine,129
 1351DATA *W.|M:se.seg.9|M:LOAD TEXT "Routine"|M,BCMP,B,ADC
 1352DATA First bit of using WW+ to run a real database
 1360DATA Rout.Matt.: TPlayer,115
 1361DATA PAGE=&1900:CH."R.Tplayer"|M,BCMP,B,ADC
 1362DATA Music while you work
 1370DATA Rout.Matt.: IntCalc,115
 1371DATA PAGE=&1900:CH."R.IntCalc"|M,ABCMP,B,ADC
 1372DATA Calculate compound interest
 1380DATA Rout.Matt.: WordWrp,115
 1381DATA PAGE=&1900:CH."R.WordWrp"|M,ABCMP,B,ADC
 1382DATA Print with word wrap
 1390DATA Rout.Matt.: Outline,115
 1391DATA PAGE=&1900:CH."R.Outline"|M,ABCMP,T,ADC
 1392DATA Print text a bit prettier than usual -- slow though.
 1400DATA Checksums (new),-
 1401DATA *xs|M,BCMP,R,AD
 1402DATA The 1989 version which handles DATA statements correctly
 1410DATA Checksums (old),-
 1411DATA *xsum|M,BCMP,R,AD
 1412DATA The 1988 version that will checksum ranges of lines and print too.


� > X.GEN
� Menu Data Creator
� by Steve Turnbull
(� (c) Database Publications
2	�init
<
�readdata
F	�assm
P+�("SAVE FDATA "+�~data+"+"+�~Q%+" 0 0")
Z�
d� �init
n� data &C00
xbase=&2000
��I%=data �data+&C00-1�4
�!I%=0:�
�files$="ACDT"
�types$="BDELRS"
�mchns$="ABCMPZ"
��
�� �readdata
�� v$,n$,m$,y$,noof
� � n$(noof),p$(noof),f$(noof)
� � m$(noof),t$(noof),s$(noof)
�� h$(noof)
�� F%=0 � noof-1
�� n$(F%),p$(F%),f$(F%)
!� m$(F%),t$(F%),s$(F%),h$(F%)
	6�n$(F%)'p$(F%)'f$(F%)'m$(F%)'t$(F%)'s$(F%)'h$(F%)'
�:�
File structure:
"#Number of files      --  1 byte
,$Offset to Volume     --  2 bytes
6$Offset to Issue      --  2 bytes
@$Offset to Date       --  2 bytes
J$Offset of type table --  2 bytes
T$Offset of mach table --  2 bytes
^$Offset of FS table   --  2 bytes
h$Offset of name offs  --  2 bytes
r$Offset of page offs  --  2 bytes
|$Offset of fnam offs  --  2 bytes
�$Offset of help offs  --  2 bytes
�$Type table           --  n bytes
�$Machines table       --  n bytes
�$FS table             --  n bytes
�$Offsets to name      -- 2n bytes
�$Offsets to page      -- 2n bytes
�$Offsets to filename  -- 2n bytes
�$Offsets to help      -- 2n bytes
�(Start of strings     -- 21+11n bytes
�� �assm
�O%=0:R%=21:Q%=R%+11*noof
��b(noof)
�(�w(Q%):�x(784,988,"Volume"+�f(v$,3))
'�w(Q%):�x(784,946,"Issue"+�f(n$,3))
 �w(Q%):�x(784,902,m$+" "+y$)
�w(R%):R%=R%+noof
&�w(R%):R%=R%+noof
0�w(R%):R%=R%+noof
:�w(R%):R%=R%+2*noof
D�w(R%):R%=R%+2*noof
N�w(R%):R%=R%+2*noof
X�w(R%):R%=R%+2*noof
b� F%=0 � noof-1
l�byte(t$(F%),types$):�
v� F%=0 � noof-1
��byte(m$(F%),mchns$):�
�� F%=0 � noof-1
��byte(s$(F%),files$):�
�� F%=0 � noof-1
��w(Q%):�str(n$(F%)):�
�� F%=0 � noof-1:�w(Q%)
��str(�f(p$(F%),3)):�
�� F%=0 � noof-1:�w(Q%)
��str("*K.10 "+f$(F%)):�
�� F%=0 � noof-1:�w(Q%)
��str(�j(h$(F%),33)+�0):�
��
�� �j(t$,W%)
� l$,s$,w$:t$=t$+" "
� w$=�wd
7� �w$+�l$>=W% s$=s$+l$+�10+�13:l$=w$ � l$=l$+" "+w$
 � t$="":=�s$+l$,2)
*� �wd:� C%,w$:� t$="" =""
4C%=�t$," "):w$=�t$,C%-1)
>t$=�t$,C%+1):=w$
H� �b(B%)
Rdata?O%=B%:O%=O%+1:�
\� �w(W%)
fW%=W%+base:�b(W%�256)
p�b(W%�256):�
z � �f(x$,L%)=��L%," ")+x$,L%)
�� �x(X%,Y%,t$)
��wq(X%):�wq(Y%)
��str(t$+�13):�
�� �wq(W%):�bq(W%�256)
��bq(W%�256):�
�
� �bq(B%)
�data?Q%=B%:Q%=Q%+1:�
�� �str(x$):$(data+Q%)=x$
�Q%=Q%+�x$+1:�
�� �byte(x$,k$)
�� B%,L%,P%,Z%:B%=1
�L%=�k$:� L%>8 �
�� P%=1 � L%
!Z%=Z%�((�x$,�k$,P%,1))>0)�B%)
B%=B%+B%:�
�b(Z%):�
$(Issue:    Volume, Issue, Month, Year
.Files:    Number of
8(Name:     Text string <30 characters
B"Page:     Page number (string)
LRun:      String
VMachine:  A = Archimedes
`          B = BBC B
j          C = Compact
t          M = Master
~          P = B+
�          Z = Z88
�Type:     B = Basic
�          D = Data
�           E = *EXECable file
�          L = *�able file
�          R = *RUNable file
�"          S = *SRLOADable file
�          T = Text
�FS:       A = ADFS
�          C = CFS
�          D = DFS
�          T = Teletext
          I = IEEE

Help:     Help text
� 8,9,November,1990
� 10
(� Danger Dog,47
)*� PAGE=&1900:CH."Danger1"|M,BCMP,B,ADC
*0� Great arcade adventure with the Danger Dog
2� Extended Palette,63
3)� PAGE=&1900:CH."ExtPal"|M,BCMP,B,ADC
4=� Flashy (pun) colour mixing technique (not for Electron)
<� PI,28
=*� PAGE=&1900:CH."PiCalc"|M,ABCMP,B,ADC
>;� AT LAST! How to calculate PI in three different ways.
F� WW+DB: Routine,129
G7� *W.|M:se.seg.9|M:LOAD TEXT "Routine"|M,BCMP,B,ADC
H3� First bit of using WW+ to run a real database
P� Rout.Matt.: TPlayer,115
Q,� PAGE=&1900:CH."R.Tplayer"|M,BCMP,B,ADC
R� Music while you work
Z� Rout.Matt.: IntCalc,115
[-� PAGE=&1900:CH."R.IntCalc"|M,ABCMP,B,ADC
\!� Calculate compound interest
d� Rout.Matt.: WordWrp,115
e-� PAGE=&1900:CH."R.WordWrp"|M,ABCMP,B,ADC
f� Print with word wrap
n� Rout.Matt.: Outline,115
o-� PAGE=&1900:CH."R.Outline"|M,ABCMP,T,ADC
p:� Print text a bit prettier than usual -- slow though.
x� Checksums (new),-
y� *xs|M,BCMP,R,AD
z>� The 1989 version which handles DATA statements correctly
�� Checksums (old),-
�� *xsum|M,BCMP,R,AD
�H� The 1988 version that will checksum ranges of lines and print too.
�
00000000  0d 00 0a 0d f4 20 3e 20  58 2e 47 45 4e 0d 00 14  |..... > X.GEN...|
00000010  17 f4 20 4d 65 6e 75 20  44 61 74 61 20 43 72 65  |.. Menu Data Cre|
00000020  61 74 6f 72 0d 00 1e 17  f4 20 62 79 20 53 74 65  |ator..... by Ste|
00000030  76 65 20 54 75 72 6e 62  75 6c 6c 0d 00 28 1f f4  |ve Turnbull..(..|
00000040  20 28 63 29 20 44 61 74  61 62 61 73 65 20 50 75  | (c) Database Pu|
00000050  62 6c 69 63 61 74 69 6f  6e 73 0d 00 32 09 f2 69  |blications..2..i|
00000060  6e 69 74 0d 00 3c 0d f2  72 65 61 64 64 61 74 61  |nit..<..readdata|
00000070  0d 00 46 09 f2 61 73 73  6d 0d 00 50 2b ff 28 22  |..F..assm..P+.("|
00000080  53 41 56 45 20 46 44 41  54 41 20 22 2b c3 7e 64  |SAVE FDATA "+.~d|
00000090  61 74 61 2b 22 2b 22 2b  c3 7e 51 25 2b 22 20 30  |ata+"+"+.~Q%+" 0|
000000a0  20 30 22 29 0d 00 5a 05  e0 0d 00 64 0b dd 20 f2  | 0")..Z....d.. .|
000000b0  69 6e 69 74 0d 00 6e 0f  de 20 64 61 74 61 20 26  |init..n.. data &|
000000c0  43 30 30 0d 00 78 0e 62  61 73 65 3d 26 32 30 30  |C00..x.base=&200|
000000d0  30 0d 00 82 1b e3 49 25  3d 64 61 74 61 20 b8 64  |0.....I%=data .d|
000000e0  61 74 61 2b 26 43 30 30  2d 31 88 34 0d 00 8c 0b  |ata+&C00-1.4....|
000000f0  21 49 25 3d 30 3a ed 0d  00 96 11 66 69 6c 65 73  |!I%=0:.....files|
00000100  24 3d 22 41 43 44 54 22  0d 00 a0 13 74 79 70 65  |$="ACDT"....type|
00000110  73 24 3d 22 42 44 45 4c  52 53 22 0d 00 aa 13 6d  |s$="BDELRS"....m|
00000120  63 68 6e 73 24 3d 22 41  42 43 4d 50 5a 22 0d 00  |chns$="ABCMPZ"..|
00000130  b4 05 e1 0d 00 be 0f dd  20 f2 72 65 61 64 64 61  |........ .readda|
00000140  74 61 0d 00 c8 16 f3 20  76 24 2c 6e 24 2c 6d 24  |ta..... v$,n$,m$|
00000150  2c 79 24 2c 6e 6f 6f 66  0d 00 d2 20 de 20 6e 24  |,y$,noof... . n$|
00000160  28 6e 6f 6f 66 29 2c 70  24 28 6e 6f 6f 66 29 2c  |(noof),p$(noof),|
00000170  66 24 28 6e 6f 6f 66 29  0d 00 dc 20 de 20 6d 24  |f$(noof)... . m$|
00000180  28 6e 6f 6f 66 29 2c 74  24 28 6e 6f 6f 66 29 2c  |(noof),t$(noof),|
00000190  73 24 28 6e 6f 6f 66 29  0d 00 e6 0e de 20 68 24  |s$(noof)..... h$|
000001a0  28 6e 6f 6f 66 29 0d 00  f0 13 e3 20 46 25 3d 30  |(noof)..... F%=0|
000001b0  20 b8 20 6e 6f 6f 66 2d  31 0d 00 fa 1a f3 20 6e  | . noof-1..... n|
000001c0  24 28 46 25 29 2c 70 24  28 46 25 29 2c 66 24 28  |$(F%),p$(F%),f$(|
000001d0  46 25 29 0d 01 04 21 f3  20 6d 24 28 46 25 29 2c  |F%)...!. m$(F%),|
000001e0  74 24 28 46 25 29 2c 73  24 28 46 25 29 2c 68 24  |t$(F%),s$(F%),h$|
000001f0  28 46 25 29 0d 01 09 36  f1 6e 24 28 46 25 29 27  |(F%)...6.n$(F%)'|
00000200  70 24 28 46 25 29 27 66  24 28 46 25 29 27 6d 24  |p$(F%)'f$(F%)'m$|
00000210  28 46 25 29 27 74 24 28  46 25 29 27 73 24 28 46  |(F%)'t$(F%)'s$(F|
00000220  25 29 27 68 24 28 46 25  29 27 0d 01 0e 07 ed 3a  |%)'h$(F%)'.....:|
00000230  e1 0d 01 18 13 46 69 6c  65 20 73 74 72 75 63 74  |.....File struct|
00000240  75 72 65 3a 0d 01 22 23  4e 75 6d 62 65 72 20 6f  |ure:.."#Number o|
00000250  66 20 66 69 6c 65 73 20  20 20 20 20 20 2d 2d 20  |f files      -- |
00000260  20 31 20 62 79 74 65 0d  01 2c 24 4f 66 66 73 65  | 1 byte..,$Offse|
00000270  74 20 74 6f 20 56 6f 6c  75 6d 65 20 20 20 20 20  |t to Volume     |
00000280  2d 2d 20 20 32 20 62 79  74 65 73 0d 01 36 24 4f  |--  2 bytes..6$O|
00000290  66 66 73 65 74 20 74 6f  20 49 73 73 75 65 20 20  |ffset to Issue  |
000002a0  20 20 20 20 2d 2d 20 20  32 20 62 79 74 65 73 0d  |    --  2 bytes.|
000002b0  01 40 24 4f 66 66 73 65  74 20 74 6f 20 44 61 74  |.@$Offset to Dat|
000002c0  65 20 20 20 20 20 20 20  2d 2d 20 20 32 20 62 79  |e       --  2 by|
000002d0  74 65 73 0d 01 4a 24 4f  66 66 73 65 74 20 6f 66  |tes..J$Offset of|
000002e0  20 74 79 70 65 20 74 61  62 6c 65 20 2d 2d 20 20  | type table --  |
000002f0  32 20 62 79 74 65 73 0d  01 54 24 4f 66 66 73 65  |2 bytes..T$Offse|
00000300  74 20 6f 66 20 6d 61 63  68 20 74 61 62 6c 65 20  |t of mach table |
00000310  2d 2d 20 20 32 20 62 79  74 65 73 0d 01 5e 24 4f  |--  2 bytes..^$O|
00000320  66 66 73 65 74 20 6f 66  20 46 53 20 74 61 62 6c  |ffset of FS tabl|
00000330  65 20 20 20 2d 2d 20 20  32 20 62 79 74 65 73 0d  |e   --  2 bytes.|
00000340  01 68 24 4f 66 66 73 65  74 20 6f 66 20 6e 61 6d  |.h$Offset of nam|
00000350  65 20 6f 66 66 73 20 20  2d 2d 20 20 32 20 62 79  |e offs  --  2 by|
00000360  74 65 73 0d 01 72 24 4f  66 66 73 65 74 20 6f 66  |tes..r$Offset of|
00000370  20 70 61 67 65 20 6f 66  66 73 20 20 2d 2d 20 20  | page offs  --  |
00000380  32 20 62 79 74 65 73 0d  01 7c 24 4f 66 66 73 65  |2 bytes..|$Offse|
00000390  74 20 6f 66 20 66 6e 61  6d 20 6f 66 66 73 20 20  |t of fnam offs  |
000003a0  2d 2d 20 20 32 20 62 79  74 65 73 0d 01 86 24 4f  |--  2 bytes...$O|
000003b0  66 66 73 65 74 20 6f 66  20 68 65 6c 70 20 6f 66  |ffset of help of|
000003c0  66 73 20 20 2d 2d 20 20  32 20 62 79 74 65 73 0d  |fs  --  2 bytes.|
000003d0  01 90 24 54 79 70 65 20  74 61 62 6c 65 20 20 20  |..$Type table   |
000003e0  20 20 20 20 20 20 20 20  2d 2d 20 20 6e 20 62 79  |        --  n by|
000003f0  74 65 73 0d 01 9a 24 4d  61 63 68 69 6e 65 73 20  |tes...$Machines |
00000400  74 61 62 6c 65 20 20 20  20 20 20 20 2d 2d 20 20  |table       --  |
00000410  6e 20 62 79 74 65 73 0d  01 a4 24 46 53 20 74 61  |n bytes...$FS ta|
00000420  62 6c 65 20 20 20 20 20  20 20 20 20 20 20 20 20  |ble             |
00000430  2d 2d 20 20 6e 20 62 79  74 65 73 0d 01 ae 24 4f  |--  n bytes...$O|
00000440  66 66 73 65 74 73 20 74  6f 20 6e 61 6d 65 20 20  |ffsets to name  |
00000450  20 20 20 20 2d 2d 20 32  6e 20 62 79 74 65 73 0d  |    -- 2n bytes.|
00000460  01 b8 24 4f 66 66 73 65  74 73 20 74 6f 20 70 61  |..$Offsets to pa|
00000470  67 65 20 20 20 20 20 20  2d 2d 20 32 6e 20 62 79  |ge      -- 2n by|
00000480  74 65 73 0d 01 c2 24 4f  66 66 73 65 74 73 20 74  |tes...$Offsets t|
00000490  6f 20 66 69 6c 65 6e 61  6d 65 20 20 2d 2d 20 32  |o filename  -- 2|
000004a0  6e 20 62 79 74 65 73 0d  01 cc 24 4f 66 66 73 65  |n bytes...$Offse|
000004b0  74 73 20 74 6f 20 68 65  6c 70 20 20 20 20 20 20  |ts to help      |
000004c0  2d 2d 20 32 6e 20 62 79  74 65 73 0d 01 d6 28 53  |-- 2n bytes...(S|
000004d0  74 61 72 74 20 6f 66 20  73 74 72 69 6e 67 73 20  |tart of strings |
000004e0  20 20 20 20 2d 2d 20 32  31 2b 31 31 6e 20 62 79  |    -- 21+11n by|
000004f0  74 65 73 0d 01 e0 0b dd  20 f2 61 73 73 6d 0d 01  |tes..... .assm..|
00000500  ea 1c 4f 25 3d 30 3a 52  25 3d 32 31 3a 51 25 3d  |..O%=0:R%=21:Q%=|
00000510  52 25 2b 31 31 2a 6e 6f  6f 66 0d 01 f4 0c f2 62  |R%+11*noof.....b|
00000520  28 6e 6f 6f 66 29 0d 01  fe 28 f2 77 28 51 25 29  |(noof)...(.w(Q%)|
00000530  3a f2 78 28 37 38 34 2c  39 38 38 2c 22 56 6f 6c  |:.x(784,988,"Vol|
00000540  75 6d 65 22 2b a4 66 28  76 24 2c 33 29 29 0d 02  |ume"+.f(v$,3))..|
00000550  08 27 f2 77 28 51 25 29  3a f2 78 28 37 38 34 2c  |.'.w(Q%):.x(784,|
00000560  39 34 36 2c 22 49 73 73  75 65 22 2b a4 66 28 6e  |946,"Issue"+.f(n|
00000570  24 2c 33 29 29 0d 02 12  20 f2 77 28 51 25 29 3a  |$,3))... .w(Q%):|
00000580  f2 78 28 37 38 34 2c 39  30 32 2c 6d 24 2b 22 20  |.x(784,902,m$+" |
00000590  22 2b 79 24 29 0d 02 1c  15 f2 77 28 52 25 29 3a  |"+y$).....w(R%):|
000005a0  52 25 3d 52 25 2b 6e 6f  6f 66 0d 02 26 15 f2 77  |R%=R%+noof..&..w|
000005b0  28 52 25 29 3a 52 25 3d  52 25 2b 6e 6f 6f 66 0d  |(R%):R%=R%+noof.|
000005c0  02 30 15 f2 77 28 52 25  29 3a 52 25 3d 52 25 2b  |.0..w(R%):R%=R%+|
000005d0  6e 6f 6f 66 0d 02 3a 17  f2 77 28 52 25 29 3a 52  |noof..:..w(R%):R|
000005e0  25 3d 52 25 2b 32 2a 6e  6f 6f 66 0d 02 44 17 f2  |%=R%+2*noof..D..|
000005f0  77 28 52 25 29 3a 52 25  3d 52 25 2b 32 2a 6e 6f  |w(R%):R%=R%+2*no|
00000600  6f 66 0d 02 4e 17 f2 77  28 52 25 29 3a 52 25 3d  |of..N..w(R%):R%=|
00000610  52 25 2b 32 2a 6e 6f 6f  66 0d 02 58 17 f2 77 28  |R%+2*noof..X..w(|
00000620  52 25 29 3a 52 25 3d 52  25 2b 32 2a 6e 6f 6f 66  |R%):R%=R%+2*noof|
00000630  0d 02 62 13 e3 20 46 25  3d 30 20 b8 20 6e 6f 6f  |..b.. F%=0 . noo|
00000640  66 2d 31 0d 02 6c 1a f2  62 79 74 65 28 74 24 28  |f-1..l..byte(t$(|
00000650  46 25 29 2c 74 79 70 65  73 24 29 3a ed 0d 02 76  |F%),types$):...v|
00000660  13 e3 20 46 25 3d 30 20  b8 20 6e 6f 6f 66 2d 31  |.. F%=0 . noof-1|
00000670  0d 02 80 1a f2 62 79 74  65 28 6d 24 28 46 25 29  |.....byte(m$(F%)|
00000680  2c 6d 63 68 6e 73 24 29  3a ed 0d 02 8a 13 e3 20  |,mchns$):...... |
00000690  46 25 3d 30 20 b8 20 6e  6f 6f 66 2d 31 0d 02 94  |F%=0 . noof-1...|
000006a0  1a f2 62 79 74 65 28 73  24 28 46 25 29 2c 66 69  |..byte(s$(F%),fi|
000006b0  6c 65 73 24 29 3a ed 0d  02 9e 13 e3 20 46 25 3d  |les$):...... F%=|
000006c0  30 20 b8 20 6e 6f 6f 66  2d 31 0d 02 a8 19 f2 77  |0 . noof-1.....w|
000006d0  28 51 25 29 3a f2 73 74  72 28 6e 24 28 46 25 29  |(Q%):.str(n$(F%)|
000006e0  29 3a ed 0d 02 b2 1a e3  20 46 25 3d 30 20 b8 20  |):...... F%=0 . |
000006f0  6e 6f 6f 66 2d 31 3a f2  77 28 51 25 29 0d 02 bc  |noof-1:.w(Q%)...|
00000700  18 f2 73 74 72 28 a4 66  28 70 24 28 46 25 29 2c  |..str(.f(p$(F%),|
00000710  33 29 29 3a ed 0d 02 c6  1a e3 20 46 25 3d 30 20  |3)):...... F%=0 |
00000720  b8 20 6e 6f 6f 66 2d 31  3a f2 77 28 51 25 29 0d  |. noof-1:.w(Q%).|
00000730  02 d0 1b f2 73 74 72 28  22 2a 4b 2e 31 30 20 22  |....str("*K.10 "|
00000740  2b 66 24 28 46 25 29 29  3a ed 0d 02 da 1a e3 20  |+f$(F%)):...... |
00000750  46 25 3d 30 20 b8 20 6e  6f 6f 66 2d 31 3a f2 77  |F%=0 . noof-1:.w|
00000760  28 51 25 29 0d 02 e4 1c  f2 73 74 72 28 a4 6a 28  |(Q%).....str(.j(|
00000770  68 24 28 46 25 29 2c 33  33 29 2b bd 30 29 3a ed  |h$(F%),33)+.0):.|
00000780  0d 02 ee 05 e1 0d 02 f8  0f dd 20 a4 6a 28 74 24  |.......... .j(t$|
00000790  2c 57 25 29 0d 03 02 18  ea 20 6c 24 2c 73 24 2c  |,W%)..... l$,s$,|
000007a0  77 24 3a 74 24 3d 74 24  2b 22 20 22 0d 03 0c 0c  |w$:t$=t$+" "....|
000007b0  f5 20 77 24 3d a4 77 64  0d 03 16 37 e7 20 a9 77  |. w$=.wd...7. .w|
000007c0  24 2b a9 6c 24 3e 3d 57  25 20 73 24 3d 73 24 2b  |$+.l$>=W% s$=s$+|
000007d0  6c 24 2b bd 31 30 2b bd  31 33 3a 6c 24 3d 77 24  |l$+.10+.13:l$=w$|
000007e0  20 8b 20 6c 24 3d 6c 24  2b 22 20 22 2b 77 24 0d  | . l$=l$+" "+w$.|
000007f0  03 20 16 fd 20 74 24 3d  22 22 3a 3d c1 73 24 2b  |. .. t$="":=.s$+|
00000800  6c 24 2c 32 29 0d 03 2a  1d dd 20 a4 77 64 3a ea  |l$,2)..*.. .wd:.|
00000810  20 43 25 2c 77 24 3a e7  20 74 24 3d 22 22 20 3d  | C%,w$:. t$="" =|
00000820  22 22 0d 03 34 1c 43 25  3d a7 74 24 2c 22 20 22  |""..4.C%=.t$," "|
00000830  29 3a 77 24 3d c0 74 24  2c 43 25 2d 31 29 0d 03  |):w$=.t$,C%-1)..|
00000840  3e 14 74 24 3d c1 74 24  2c 43 25 2b 31 29 3a 3d  |>.t$=.t$,C%+1):=|
00000850  77 24 0d 03 48 0c dd 20  f2 62 28 42 25 29 0d 03  |w$..H.. .b(B%)..|
00000860  52 18 64 61 74 61 3f 4f  25 3d 42 25 3a 4f 25 3d  |R.data?O%=B%:O%=|
00000870  4f 25 2b 31 3a e1 0d 03  5c 0c dd 20 f2 77 28 57  |O%+1:...\.. .w(W|
00000880  25 29 0d 03 66 19 57 25  3d 57 25 2b 62 61 73 65  |%)..f.W%=W%+base|
00000890  3a f2 62 28 57 25 83 32  35 36 29 0d 03 70 10 f2  |:.b(W%.256)..p..|
000008a0  62 28 57 25 81 32 35 36  29 3a e1 0d 03 7a 20 dd  |b(W%.256):...z .|
000008b0  20 a4 66 28 78 24 2c 4c  25 29 3d c2 c4 4c 25 2c  | .f(x$,L%)=..L%,|
000008c0  22 20 22 29 2b 78 24 2c  4c 25 29 0d 03 84 12 dd  |" ")+x$,L%).....|
000008d0  20 f2 78 28 58 25 2c 59  25 2c 74 24 29 0d 03 8e  | .x(X%,Y%,t$)...|
000008e0  13 f2 77 71 28 58 25 29  3a f2 77 71 28 59 25 29  |..wq(X%):.wq(Y%)|
000008f0  0d 03 98 12 f2 73 74 72  28 74 24 2b bd 31 33 29  |.....str(t$+.13)|
00000900  3a e1 0d 03 a2 19 dd 20  f2 77 71 28 57 25 29 3a  |:...... .wq(W%):|
00000910  f2 62 71 28 57 25 83 32  35 36 29 0d 03 ac 11 f2  |.bq(W%.256).....|
00000920  62 71 28 57 25 81 32 35  36 29 3a e1 0d 03 b6 0d  |bq(W%.256):.....|
00000930  dd 20 f2 62 71 28 42 25  29 0d 03 c0 18 64 61 74  |. .bq(B%)....dat|
00000940  61 3f 51 25 3d 42 25 3a  51 25 3d 51 25 2b 31 3a  |a?Q%=B%:Q%=Q%+1:|
00000950  e1 0d 03 ca 1c dd 20 f2  73 74 72 28 78 24 29 3a  |...... .str(x$):|
00000960  24 28 64 61 74 61 2b 51  25 29 3d 78 24 0d 03 d4  |$(data+Q%)=x$...|
00000970  11 51 25 3d 51 25 2b a9  78 24 2b 31 3a e1 0d 03  |.Q%=Q%+.x$+1:...|
00000980  de 12 dd 20 f2 62 79 74  65 28 78 24 2c 6b 24 29  |... .byte(x$,k$)|
00000990  0d 03 e8 16 ea 20 42 25  2c 4c 25 2c 50 25 2c 5a  |..... B%,L%,P%,Z|
000009a0  25 3a 42 25 3d 31 0d 03  f2 13 4c 25 3d a9 6b 24  |%:B%=1....L%=.k$|
000009b0  3a e7 20 4c 25 3e 38 20  85 0d 03 fc 0f e3 20 50  |:. L%>8 ...... P|
000009c0  25 3d 31 20 b8 20 4c 25  0d 04 06 21 5a 25 3d 5a  |%=1 . L%...!Z%=Z|
000009d0  25 84 28 28 a7 78 24 2c  c1 6b 24 2c 50 25 2c 31  |%.((.x$,.k$,P%,1|
000009e0  29 29 3e 30 29 80 42 25  29 0d 04 10 0e 42 25 3d  |))>0).B%)....B%=|
000009f0  42 25 2b 42 25 3a ed 0d  04 1a 0c f2 62 28 5a 25  |B%+B%:......b(Z%|
00000a00  29 3a e1 0d 04 24 28 49  73 73 75 65 3a 20 20 20  |):...$(Issue:   |
00000a10  20 56 6f 6c 75 6d 65 2c  20 49 73 73 75 65 2c 20  | Volume, Issue, |
00000a20  4d 6f 6e 74 68 2c 20 59  65 61 72 0d 04 2e 17 46  |Month, Year....F|
00000a30  69 6c 65 73 3a 20 20 20  20 4e 75 6d 62 65 72 20  |iles:    Number |
00000a40  6f 66 0d 04 38 28 4e 61  6d 65 3a 20 20 20 20 20  |of..8(Name:     |
00000a50  54 65 78 74 20 73 74 72  69 6e 67 20 3c 33 30 20  |Text string <30 |
00000a60  63 68 61 72 61 63 74 65  72 73 0d 04 42 22 50 61  |characters..B"Pa|
00000a70  67 65 3a 20 20 20 20 20  50 61 67 65 20 6e 75 6d  |ge:     Page num|
00000a80  62 65 72 20 28 73 74 72  69 6e 67 29 0d 04 4c 14  |ber (string)..L.|
00000a90  52 75 6e 3a 20 20 20 20  20 20 53 74 72 69 6e 67  |Run:      String|
00000aa0  0d 04 56 1c 4d 61 63 68  69 6e 65 3a 20 20 41 20  |..V.Machine:  A |
00000ab0  3d 20 41 72 63 68 69 6d  65 64 65 73 0d 04 60 17  |= Archimedes..`.|
00000ac0  20 20 20 20 20 20 20 20  20 20 42 20 3d 20 42 42  |          B = BB|
00000ad0  43 20 42 0d 04 6a 19 20  20 20 20 20 20 20 20 20  |C B..j.         |
00000ae0  20 43 20 3d 20 43 6f 6d  70 61 63 74 0d 04 74 18  | C = Compact..t.|
00000af0  20 20 20 20 20 20 20 20  20 20 4d 20 3d 20 4d 61  |          M = Ma|
00000b00  73 74 65 72 0d 04 7e 14  20 20 20 20 20 20 20 20  |ster..~.        |
00000b10  20 20 50 20 3d 20 42 2b  0d 04 88 15 20 20 20 20  |  P = B+....    |
00000b20  20 20 20 20 20 20 5a 20  3d 20 5a 38 38 0d 04 92  |      Z = Z88...|
00000b30  17 54 79 70 65 3a 20 20  20 20 20 42 20 3d 20 42  |.Type:     B = B|
00000b40  61 73 69 63 0d 04 9c 16  20 20 20 20 20 20 20 20  |asic....        |
00000b50  20 20 44 20 3d 20 44 61  74 61 0d 04 a6 20 20 20  |  D = Data...   |
00000b60  20 20 20 20 20 20 20 20  45 20 3d 20 2a 45 58 45  |        E = *EXE|
00000b70  43 61 62 6c 65 20 66 69  6c 65 0d 04 b0 1d 20 20  |Cable file....  |
00000b80  20 20 20 20 20 20 20 20  4c 20 3d 20 2a c8 61 62  |        L = *.ab|
00000b90  6c 65 20 66 69 6c 65 0d  04 ba 1f 20 20 20 20 20  |le file....     |
00000ba0  20 20 20 20 20 52 20 3d  20 2a 52 55 4e 61 62 6c  |     R = *RUNabl|
00000bb0  65 20 66 69 6c 65 0d 04  c4 22 20 20 20 20 20 20  |e file..."      |
00000bc0  20 20 20 20 53 20 3d 20  2a 53 52 4c 4f 41 44 61  |    S = *SRLOADa|
00000bd0  62 6c 65 20 66 69 6c 65  0d 04 ce 16 20 20 20 20  |ble file....    |
00000be0  20 20 20 20 20 20 54 20  3d 20 54 65 78 74 0d 04  |      T = Text..|
00000bf0  d8 16 46 53 3a 20 20 20  20 20 20 20 41 20 3d 20  |..FS:       A = |
00000c00  41 44 46 53 0d 04 e2 15  20 20 20 20 20 20 20 20  |ADFS....        |
00000c10  20 20 43 20 3d 20 43 46  53 0d 04 ec 15 20 20 20  |  C = CFS....   |
00000c20  20 20 20 20 20 20 20 44  20 3d 20 44 46 53 0d 04  |       D = DFS..|
00000c30  f6 1a 20 20 20 20 20 20  20 20 20 20 54 20 3d 20  |..          T = |
00000c40  54 65 6c 65 74 65 78 74  0d 05 00 16 20 20 20 20  |Teletext....    |
00000c50  20 20 20 20 20 20 49 20  3d 20 49 45 45 45 0d 05  |      I = IEEE..|
00000c60  0a 17 48 65 6c 70 3a 20  20 20 20 20 48 65 6c 70  |..Help:     Help|
00000c70  20 74 65 78 74 0d 05 14  17 dc 20 38 2c 39 2c 4e  | text..... 8,9,N|
00000c80  6f 76 65 6d 62 65 72 2c  31 39 39 30 0d 05 1e 08  |ovember,1990....|
00000c90  dc 20 31 30 0d 05 28 13  dc 20 44 61 6e 67 65 72  |. 10..(.. Danger|
00000ca0  20 44 6f 67 2c 34 37 0d  05 29 2a dc 20 50 41 47  | Dog,47..)*. PAG|
00000cb0  45 3d 26 31 39 30 30 3a  43 48 2e 22 44 61 6e 67  |E=&1900:CH."Dang|
00000cc0  65 72 31 22 7c 4d 2c 42  43 4d 50 2c 42 2c 41 44  |er1"|M,BCMP,B,AD|
00000cd0  43 0d 05 2a 30 dc 20 47  72 65 61 74 20 61 72 63  |C..*0. Great arc|
00000ce0  61 64 65 20 61 64 76 65  6e 74 75 72 65 20 77 69  |ade adventure wi|
00000cf0  74 68 20 74 68 65 20 44  61 6e 67 65 72 20 44 6f  |th the Danger Do|
00000d00  67 0d 05 32 19 dc 20 45  78 74 65 6e 64 65 64 20  |g..2.. Extended |
00000d10  50 61 6c 65 74 74 65 2c  36 33 0d 05 33 29 dc 20  |Palette,63..3). |
00000d20  50 41 47 45 3d 26 31 39  30 30 3a 43 48 2e 22 45  |PAGE=&1900:CH."E|
00000d30  78 74 50 61 6c 22 7c 4d  2c 42 43 4d 50 2c 42 2c  |xtPal"|M,BCMP,B,|
00000d40  41 44 43 0d 05 34 3d dc  20 46 6c 61 73 68 79 20  |ADC..4=. Flashy |
00000d50  28 70 75 6e 29 20 63 6f  6c 6f 75 72 20 6d 69 78  |(pun) colour mix|
00000d60  69 6e 67 20 74 65 63 68  6e 69 71 75 65 20 28 6e  |ing technique (n|
00000d70  6f 74 20 66 6f 72 20 45  6c 65 63 74 72 6f 6e 29  |ot for Electron)|
00000d80  0d 05 3c 0b dc 20 50 49  2c 32 38 0d 05 3d 2a dc  |..<.. PI,28..=*.|
00000d90  20 50 41 47 45 3d 26 31  39 30 30 3a 43 48 2e 22  | PAGE=&1900:CH."|
00000da0  50 69 43 61 6c 63 22 7c  4d 2c 41 42 43 4d 50 2c  |PiCalc"|M,ABCMP,|
00000db0  42 2c 41 44 43 0d 05 3e  3b dc 20 41 54 20 4c 41  |B,ADC..>;. AT LA|
00000dc0  53 54 21 20 48 6f 77 20  74 6f 20 63 61 6c 63 75  |ST! How to calcu|
00000dd0  6c 61 74 65 20 50 49 20  69 6e 20 74 68 72 65 65  |late PI in three|
00000de0  20 64 69 66 66 65 72 65  6e 74 20 77 61 79 73 2e  | different ways.|
00000df0  0d 05 46 18 dc 20 57 57  2b 44 42 3a 20 52 6f 75  |..F.. WW+DB: Rou|
00000e00  74 69 6e 65 2c 31 32 39  0d 05 47 37 dc 20 2a 57  |tine,129..G7. *W|
00000e10  2e 7c 4d 3a 73 65 2e 73  65 67 2e 39 7c 4d 3a 4c  |.|M:se.seg.9|M:L|
00000e20  4f 41 44 20 54 45 58 54  20 22 52 6f 75 74 69 6e  |OAD TEXT "Routin|
00000e30  65 22 7c 4d 2c 42 43 4d  50 2c 42 2c 41 44 43 0d  |e"|M,BCMP,B,ADC.|
00000e40  05 48 33 dc 20 46 69 72  73 74 20 62 69 74 20 6f  |.H3. First bit o|
00000e50  66 20 75 73 69 6e 67 20  57 57 2b 20 74 6f 20 72  |f using WW+ to r|
00000e60  75 6e 20 61 20 72 65 61  6c 20 64 61 74 61 62 61  |un a real databa|
00000e70  73 65 0d 05 50 1d dc 20  52 6f 75 74 2e 4d 61 74  |se..P.. Rout.Mat|
00000e80  74 2e 3a 20 54 50 6c 61  79 65 72 2c 31 31 35 0d  |t.: TPlayer,115.|
00000e90  05 51 2c dc 20 50 41 47  45 3d 26 31 39 30 30 3a  |.Q,. PAGE=&1900:|
00000ea0  43 48 2e 22 52 2e 54 70  6c 61 79 65 72 22 7c 4d  |CH."R.Tplayer"|M|
00000eb0  2c 42 43 4d 50 2c 42 2c  41 44 43 0d 05 52 1a dc  |,BCMP,B,ADC..R..|
00000ec0  20 4d 75 73 69 63 20 77  68 69 6c 65 20 79 6f 75  | Music while you|
00000ed0  20 77 6f 72 6b 0d 05 5a  1d dc 20 52 6f 75 74 2e  | work..Z.. Rout.|
00000ee0  4d 61 74 74 2e 3a 20 49  6e 74 43 61 6c 63 2c 31  |Matt.: IntCalc,1|
00000ef0  31 35 0d 05 5b 2d dc 20  50 41 47 45 3d 26 31 39  |15..[-. PAGE=&19|
00000f00  30 30 3a 43 48 2e 22 52  2e 49 6e 74 43 61 6c 63  |00:CH."R.IntCalc|
00000f10  22 7c 4d 2c 41 42 43 4d  50 2c 42 2c 41 44 43 0d  |"|M,ABCMP,B,ADC.|
00000f20  05 5c 21 dc 20 43 61 6c  63 75 6c 61 74 65 20 63  |.\!. Calculate c|
00000f30  6f 6d 70 6f 75 6e 64 20  69 6e 74 65 72 65 73 74  |ompound interest|
00000f40  0d 05 64 1d dc 20 52 6f  75 74 2e 4d 61 74 74 2e  |..d.. Rout.Matt.|
00000f50  3a 20 57 6f 72 64 57 72  70 2c 31 31 35 0d 05 65  |: WordWrp,115..e|
00000f60  2d dc 20 50 41 47 45 3d  26 31 39 30 30 3a 43 48  |-. PAGE=&1900:CH|
00000f70  2e 22 52 2e 57 6f 72 64  57 72 70 22 7c 4d 2c 41  |."R.WordWrp"|M,A|
00000f80  42 43 4d 50 2c 42 2c 41  44 43 0d 05 66 1a dc 20  |BCMP,B,ADC..f.. |
00000f90  50 72 69 6e 74 20 77 69  74 68 20 77 6f 72 64 20  |Print with word |
00000fa0  77 72 61 70 0d 05 6e 1d  dc 20 52 6f 75 74 2e 4d  |wrap..n.. Rout.M|
00000fb0  61 74 74 2e 3a 20 4f 75  74 6c 69 6e 65 2c 31 31  |att.: Outline,11|
00000fc0  35 0d 05 6f 2d dc 20 50  41 47 45 3d 26 31 39 30  |5..o-. PAGE=&190|
00000fd0  30 3a 43 48 2e 22 52 2e  4f 75 74 6c 69 6e 65 22  |0:CH."R.Outline"|
00000fe0  7c 4d 2c 41 42 43 4d 50  2c 54 2c 41 44 43 0d 05  ||M,ABCMP,T,ADC..|
00000ff0  70 3a dc 20 50 72 69 6e  74 20 74 65 78 74 20 61  |p:. Print text a|
00001000  20 62 69 74 20 70 72 65  74 74 69 65 72 20 74 68  | bit prettier th|
00001010  61 6e 20 75 73 75 61 6c  20 2d 2d 20 73 6c 6f 77  |an usual -- slow|
00001020  20 74 68 6f 75 67 68 2e  0d 05 78 17 dc 20 43 68  | though...x.. Ch|
00001030  65 63 6b 73 75 6d 73 20  28 6e 65 77 29 2c 2d 0d  |ecksums (new),-.|
00001040  05 79 15 dc 20 2a 78 73  7c 4d 2c 42 43 4d 50 2c  |.y.. *xs|M,BCMP,|
00001050  52 2c 41 44 0d 05 7a 3e  dc 20 54 68 65 20 31 39  |R,AD..z>. The 19|
00001060  38 39 20 76 65 72 73 69  6f 6e 20 77 68 69 63 68  |89 version which|
00001070  20 68 61 6e 64 6c 65 73  20 44 41 54 41 20 73 74  | handles DATA st|
00001080  61 74 65 6d 65 6e 74 73  20 63 6f 72 72 65 63 74  |atements correct|
00001090  6c 79 0d 05 82 17 dc 20  43 68 65 63 6b 73 75 6d  |ly..... Checksum|
000010a0  73 20 28 6f 6c 64 29 2c  2d 0d 05 83 17 dc 20 2a  |s (old),-..... *|
000010b0  78 73 75 6d 7c 4d 2c 42  43 4d 50 2c 52 2c 41 44  |xsum|M,BCMP,R,AD|
000010c0  0d 05 84 48 dc 20 54 68  65 20 31 39 38 38 20 76  |...H. The 1988 v|
000010d0  65 72 73 69 6f 6e 20 74  68 61 74 20 77 69 6c 6c  |ersion that will|
000010e0  20 63 68 65 63 6b 73 75  6d 20 72 61 6e 67 65 73  | checksum ranges|
000010f0  20 6f 66 20 6c 69 6e 65  73 20 61 6e 64 20 70 72  | of lines and pr|
00001100  69 6e 74 20 74 6f 6f 2e  0d ff                    |int too...|
0000110a