Home » Archimedes archive » Micro User » MU 1990-10.adf » 8BitStuff » X/Gen

X/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-10.adf » 8BitStuff
Filename: X/Gen
Read OK:
File size: 136B 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%)
  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,8,October,1990
 1310DATA 16
 1320DATA Scorpion Patience,55
 1330DATA PAGE=&1100:CH."Scorpio"|M,BCMP,B,ADC
 1340DATA Another really good patience game
 1350DATA Tidbit Teazer,73
 1360DATA PAGE=&1900:CH."Tidbits"|M,BCMP,B,ADC
 1370DATA Try out this 1930's block puzzle -- it's hard!
 1380DATA SRBuild #1,99
 1390DATA PAGE=&1900:CH."SRBuild"|M,CMP,B,ADC
 1400DATA Read the magazine -- this is hot stuff
 1410DATA SRBuild #2,99
 1420DATA PAGE=&1900:CH."SRB2"|M,CMP,B,ADC
 1430DATA Read the magazine -- this is hot stuff
 1440DATA SRBuild #3,99
 1450DATA PAGE=&1900:CH."SRB3"|M,CMP,B,ADC
 1460DATA Read the magazine -- this is hot stuff
 1470DATA SRBuild #4,99
 1480DATA PAGE=&1900:CH."SRB4"|M,CMP,B,ADC
 1490DATA Read the magazine -- this is hot stuff
 1500DATA Rout.Matt.: WipeSrc,37
 1510DATA PAGE=&1900:CH."R.Wipe"|M,CM,B,ADC
 1520DATA Add *WIPE to your ADFS
 1530DATA Rout.Matt.: TmpConv,37
 1540DATA PAGE=&1900:CH."R.TmpConv"|M,ABCMP,B,ADC
 1550DATA Convert temperatures between ranges
 1560DATA Rout.Matt.: Coder,37
 1570DATA PAGE=&1900:CH."R.Coder"|M,ABCMP,B,ADC
 1580DATA Encode and decode text
 1590DATA Rout.Matt.: Polygon,37
 1600DATA *|| Polygon is a text file for Logo only|M,ABCMP,T,ADC
 1610DATA A LOGO polygon routine
 1620DATA Rout.Matt.: Patch,37
 1630DATA PAGE=&1900:CH."R.Patch"|M,BCMP,B,ADC
 1640DATA Selects American character set to print # correctly.
 1650DATA Random Access Files #1,109
 1660DATA PAGE=&1900:CH."RAF1"|M,ABCMP,B,ADC
 1670DATA Finds out length of files
 1680DATA Random Access Files #2,109
 1690DATA PAGE=&1900:CH."Phone"|M,ABCMP,B,ADC
 1700DATA A phone book
 1710DATA Ram Board: Test prog,-
 1720DATA *|| Press COPY from menu to read text about this program...|M,BCMP,B,ADC
 1730DATA It's like this - the program has been sent back to Rob. If you're desperate write to him via us.
 1740DATA Checksums (new),-
 1750DATA *xs|M,BCMP,R,AD
 1760DATA The 1989 version which handles DATA statements correctly
 1770DATA Checksums (old),-
 1780DATA *xsum|M,BCMP,R,AD
 1790DATA 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%)
�:�
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,8,October,1990
� 16
(� Scorpion Patience,55
2*� PAGE=&1100:CH."Scorpio"|M,BCMP,B,ADC
<'� Another really good patience game
F� Tidbit Teazer,73
P*� PAGE=&1900:CH."Tidbits"|M,BCMP,B,ADC
Z4� Try out this 1930's block puzzle -- it's hard!
d� SRBuild #1,99
n)� PAGE=&1900:CH."SRBuild"|M,CMP,B,ADC
x,� Read the magazine -- this is hot stuff
�� SRBuild #2,99
�&� PAGE=&1900:CH."SRB2"|M,CMP,B,ADC
�,� Read the magazine -- this is hot stuff
�� SRBuild #3,99
�&� PAGE=&1900:CH."SRB3"|M,CMP,B,ADC
�,� Read the magazine -- this is hot stuff
�� SRBuild #4,99
�&� PAGE=&1900:CH."SRB4"|M,CMP,B,ADC
�,� Read the magazine -- this is hot stuff
�� Rout.Matt.: WipeSrc,37
�'� PAGE=&1900:CH."R.Wipe"|M,CM,B,ADC
�� Add *WIPE to your ADFS
�� Rout.Matt.: TmpConv,37
-� PAGE=&1900:CH."R.TmpConv"|M,ABCMP,B,ADC
)� Convert temperatures between ranges
� Rout.Matt.: Coder,37
"+� PAGE=&1900:CH."R.Coder"|M,ABCMP,B,ADC
,� Encode and decode text
6� Rout.Matt.: Polygon,37
@<� *|| Polygon is a text file for Logo only|M,ABCMP,T,ADC
J� A LOGO polygon routine
T� Rout.Matt.: Patch,37
^*� PAGE=&1900:CH."R.Patch"|M,BCMP,B,ADC
h:� Selects American character set to print # correctly.
r � Random Access Files #1,109
|(� PAGE=&1900:CH."RAF1"|M,ABCMP,B,ADC
�� Finds out length of files
� � Random Access Files #2,109
�)� PAGE=&1900:CH."Phone"|M,ABCMP,B,ADC
�� A phone book
�� Ram Board: Test prog,-
�N� *|| Press COPY from menu to read text about this program...|M,BCMP,B,ADC
�f� It's like this - the program has been sent back to Rob. If you're desperate write to him via us.
�� Checksums (new),-
�� *xs|M,BCMP,R,AD
�>� 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 0e 07  ed 3a e1 0d 01 18 13 46  |(F%).....:.....F|
00000200  69 6c 65 20 73 74 72 75  63 74 75 72 65 3a 0d 01  |ile structure:..|
00000210  22 23 4e 75 6d 62 65 72  20 6f 66 20 66 69 6c 65  |"#Number of file|
00000220  73 20 20 20 20 20 20 2d  2d 20 20 31 20 62 79 74  |s      --  1 byt|
00000230  65 0d 01 2c 24 4f 66 66  73 65 74 20 74 6f 20 56  |e..,$Offset to V|
00000240  6f 6c 75 6d 65 20 20 20  20 20 2d 2d 20 20 32 20  |olume     --  2 |
00000250  62 79 74 65 73 0d 01 36  24 4f 66 66 73 65 74 20  |bytes..6$Offset |
00000260  74 6f 20 49 73 73 75 65  20 20 20 20 20 20 2d 2d  |to Issue      --|
00000270  20 20 32 20 62 79 74 65  73 0d 01 40 24 4f 66 66  |  2 bytes..@$Off|
00000280  73 65 74 20 74 6f 20 44  61 74 65 20 20 20 20 20  |set to Date     |
00000290  20 20 2d 2d 20 20 32 20  62 79 74 65 73 0d 01 4a  |  --  2 bytes..J|
000002a0  24 4f 66 66 73 65 74 20  6f 66 20 74 79 70 65 20  |$Offset of type |
000002b0  74 61 62 6c 65 20 2d 2d  20 20 32 20 62 79 74 65  |table --  2 byte|
000002c0  73 0d 01 54 24 4f 66 66  73 65 74 20 6f 66 20 6d  |s..T$Offset of m|
000002d0  61 63 68 20 74 61 62 6c  65 20 2d 2d 20 20 32 20  |ach table --  2 |
000002e0  62 79 74 65 73 0d 01 5e  24 4f 66 66 73 65 74 20  |bytes..^$Offset |
000002f0  6f 66 20 46 53 20 74 61  62 6c 65 20 20 20 2d 2d  |of FS table   --|
00000300  20 20 32 20 62 79 74 65  73 0d 01 68 24 4f 66 66  |  2 bytes..h$Off|
00000310  73 65 74 20 6f 66 20 6e  61 6d 65 20 6f 66 66 73  |set of name offs|
00000320  20 20 2d 2d 20 20 32 20  62 79 74 65 73 0d 01 72  |  --  2 bytes..r|
00000330  24 4f 66 66 73 65 74 20  6f 66 20 70 61 67 65 20  |$Offset of page |
00000340  6f 66 66 73 20 20 2d 2d  20 20 32 20 62 79 74 65  |offs  --  2 byte|
00000350  73 0d 01 7c 24 4f 66 66  73 65 74 20 6f 66 20 66  |s..|$Offset of f|
00000360  6e 61 6d 20 6f 66 66 73  20 20 2d 2d 20 20 32 20  |nam offs  --  2 |
00000370  62 79 74 65 73 0d 01 86  24 4f 66 66 73 65 74 20  |bytes...$Offset |
00000380  6f 66 20 68 65 6c 70 20  6f 66 66 73 20 20 2d 2d  |of help offs  --|
00000390  20 20 32 20 62 79 74 65  73 0d 01 90 24 54 79 70  |  2 bytes...$Typ|
000003a0  65 20 74 61 62 6c 65 20  20 20 20 20 20 20 20 20  |e table         |
000003b0  20 20 2d 2d 20 20 6e 20  62 79 74 65 73 0d 01 9a  |  --  n bytes...|
000003c0  24 4d 61 63 68 69 6e 65  73 20 74 61 62 6c 65 20  |$Machines table |
000003d0  20 20 20 20 20 20 2d 2d  20 20 6e 20 62 79 74 65  |      --  n byte|
000003e0  73 0d 01 a4 24 46 53 20  74 61 62 6c 65 20 20 20  |s...$FS table   |
000003f0  20 20 20 20 20 20 20 20  20 20 2d 2d 20 20 6e 20  |          --  n |
00000400  62 79 74 65 73 0d 01 ae  24 4f 66 66 73 65 74 73  |bytes...$Offsets|
00000410  20 74 6f 20 6e 61 6d 65  20 20 20 20 20 20 2d 2d  | to name      --|
00000420  20 32 6e 20 62 79 74 65  73 0d 01 b8 24 4f 66 66  | 2n bytes...$Off|
00000430  73 65 74 73 20 74 6f 20  70 61 67 65 20 20 20 20  |sets to page    |
00000440  20 20 2d 2d 20 32 6e 20  62 79 74 65 73 0d 01 c2  |  -- 2n bytes...|
00000450  24 4f 66 66 73 65 74 73  20 74 6f 20 66 69 6c 65  |$Offsets to file|
00000460  6e 61 6d 65 20 20 2d 2d  20 32 6e 20 62 79 74 65  |name  -- 2n byte|
00000470  73 0d 01 cc 24 4f 66 66  73 65 74 73 20 74 6f 20  |s...$Offsets to |
00000480  68 65 6c 70 20 20 20 20  20 20 2d 2d 20 32 6e 20  |help      -- 2n |
00000490  62 79 74 65 73 0d 01 d6  28 53 74 61 72 74 20 6f  |bytes...(Start o|
000004a0  66 20 73 74 72 69 6e 67  73 20 20 20 20 20 2d 2d  |f strings     --|
000004b0  20 32 31 2b 31 31 6e 20  62 79 74 65 73 0d 01 e0  | 21+11n bytes...|
000004c0  0b dd 20 f2 61 73 73 6d  0d 01 ea 1c 4f 25 3d 30  |.. .assm....O%=0|
000004d0  3a 52 25 3d 32 31 3a 51  25 3d 52 25 2b 31 31 2a  |:R%=21:Q%=R%+11*|
000004e0  6e 6f 6f 66 0d 01 f4 0c  f2 62 28 6e 6f 6f 66 29  |noof.....b(noof)|
000004f0  0d 01 fe 28 f2 77 28 51  25 29 3a f2 78 28 37 38  |...(.w(Q%):.x(78|
00000500  34 2c 39 38 38 2c 22 56  6f 6c 75 6d 65 22 2b a4  |4,988,"Volume"+.|
00000510  66 28 76 24 2c 33 29 29  0d 02 08 27 f2 77 28 51  |f(v$,3))...'.w(Q|
00000520  25 29 3a f2 78 28 37 38  34 2c 39 34 36 2c 22 49  |%):.x(784,946,"I|
00000530  73 73 75 65 22 2b a4 66  28 6e 24 2c 33 29 29 0d  |ssue"+.f(n$,3)).|
00000540  02 12 20 f2 77 28 51 25  29 3a f2 78 28 37 38 34  |.. .w(Q%):.x(784|
00000550  2c 39 30 32 2c 6d 24 2b  22 20 22 2b 79 24 29 0d  |,902,m$+" "+y$).|
00000560  02 1c 15 f2 77 28 52 25  29 3a 52 25 3d 52 25 2b  |....w(R%):R%=R%+|
00000570  6e 6f 6f 66 0d 02 26 15  f2 77 28 52 25 29 3a 52  |noof..&..w(R%):R|
00000580  25 3d 52 25 2b 6e 6f 6f  66 0d 02 30 15 f2 77 28  |%=R%+noof..0..w(|
00000590  52 25 29 3a 52 25 3d 52  25 2b 6e 6f 6f 66 0d 02  |R%):R%=R%+noof..|
000005a0  3a 17 f2 77 28 52 25 29  3a 52 25 3d 52 25 2b 32  |:..w(R%):R%=R%+2|
000005b0  2a 6e 6f 6f 66 0d 02 44  17 f2 77 28 52 25 29 3a  |*noof..D..w(R%):|
000005c0  52 25 3d 52 25 2b 32 2a  6e 6f 6f 66 0d 02 4e 17  |R%=R%+2*noof..N.|
000005d0  f2 77 28 52 25 29 3a 52  25 3d 52 25 2b 32 2a 6e  |.w(R%):R%=R%+2*n|
000005e0  6f 6f 66 0d 02 58 17 f2  77 28 52 25 29 3a 52 25  |oof..X..w(R%):R%|
000005f0  3d 52 25 2b 32 2a 6e 6f  6f 66 0d 02 62 13 e3 20  |=R%+2*noof..b.. |
00000600  46 25 3d 30 20 b8 20 6e  6f 6f 66 2d 31 0d 02 6c  |F%=0 . noof-1..l|
00000610  1a f2 62 79 74 65 28 74  24 28 46 25 29 2c 74 79  |..byte(t$(F%),ty|
00000620  70 65 73 24 29 3a ed 0d  02 76 13 e3 20 46 25 3d  |pes$):...v.. F%=|
00000630  30 20 b8 20 6e 6f 6f 66  2d 31 0d 02 80 1a f2 62  |0 . noof-1.....b|
00000640  79 74 65 28 6d 24 28 46  25 29 2c 6d 63 68 6e 73  |yte(m$(F%),mchns|
00000650  24 29 3a ed 0d 02 8a 13  e3 20 46 25 3d 30 20 b8  |$):...... F%=0 .|
00000660  20 6e 6f 6f 66 2d 31 0d  02 94 1a f2 62 79 74 65  | noof-1.....byte|
00000670  28 73 24 28 46 25 29 2c  66 69 6c 65 73 24 29 3a  |(s$(F%),files$):|
00000680  ed 0d 02 9e 13 e3 20 46  25 3d 30 20 b8 20 6e 6f  |...... F%=0 . no|
00000690  6f 66 2d 31 0d 02 a8 19  f2 77 28 51 25 29 3a f2  |of-1.....w(Q%):.|
000006a0  73 74 72 28 6e 24 28 46  25 29 29 3a ed 0d 02 b2  |str(n$(F%)):....|
000006b0  1a e3 20 46 25 3d 30 20  b8 20 6e 6f 6f 66 2d 31  |.. F%=0 . noof-1|
000006c0  3a f2 77 28 51 25 29 0d  02 bc 18 f2 73 74 72 28  |:.w(Q%).....str(|
000006d0  a4 66 28 70 24 28 46 25  29 2c 33 29 29 3a ed 0d  |.f(p$(F%),3)):..|
000006e0  02 c6 1a e3 20 46 25 3d  30 20 b8 20 6e 6f 6f 66  |.... F%=0 . noof|
000006f0  2d 31 3a f2 77 28 51 25  29 0d 02 d0 1b f2 73 74  |-1:.w(Q%).....st|
00000700  72 28 22 2a 4b 2e 31 30  20 22 2b 66 24 28 46 25  |r("*K.10 "+f$(F%|
00000710  29 29 3a ed 0d 02 da 1a  e3 20 46 25 3d 30 20 b8  |)):...... F%=0 .|
00000720  20 6e 6f 6f 66 2d 31 3a  f2 77 28 51 25 29 0d 02  | noof-1:.w(Q%)..|
00000730  e4 1c f2 73 74 72 28 a4  6a 28 68 24 28 46 25 29  |...str(.j(h$(F%)|
00000740  2c 33 33 29 2b bd 30 29  3a ed 0d 02 ee 05 e1 0d  |,33)+.0):.......|
00000750  02 f8 0f dd 20 a4 6a 28  74 24 2c 57 25 29 0d 03  |.... .j(t$,W%)..|
00000760  02 18 ea 20 6c 24 2c 73  24 2c 77 24 3a 74 24 3d  |... l$,s$,w$:t$=|
00000770  74 24 2b 22 20 22 0d 03  0c 0c f5 20 77 24 3d a4  |t$+" "..... w$=.|
00000780  77 64 0d 03 16 37 e7 20  a9 77 24 2b a9 6c 24 3e  |wd...7. .w$+.l$>|
00000790  3d 57 25 20 73 24 3d 73  24 2b 6c 24 2b bd 31 30  |=W% s$=s$+l$+.10|
000007a0  2b bd 31 33 3a 6c 24 3d  77 24 20 8b 20 6c 24 3d  |+.13:l$=w$ . l$=|
000007b0  6c 24 2b 22 20 22 2b 77  24 0d 03 20 16 fd 20 74  |l$+" "+w$.. .. t|
000007c0  24 3d 22 22 3a 3d c1 73  24 2b 6c 24 2c 32 29 0d  |$="":=.s$+l$,2).|
000007d0  03 2a 1d dd 20 a4 77 64  3a ea 20 43 25 2c 77 24  |.*.. .wd:. C%,w$|
000007e0  3a e7 20 74 24 3d 22 22  20 3d 22 22 0d 03 34 1c  |:. t$="" =""..4.|
000007f0  43 25 3d a7 74 24 2c 22  20 22 29 3a 77 24 3d c0  |C%=.t$," "):w$=.|
00000800  74 24 2c 43 25 2d 31 29  0d 03 3e 14 74 24 3d c1  |t$,C%-1)..>.t$=.|
00000810  74 24 2c 43 25 2b 31 29  3a 3d 77 24 0d 03 48 0c  |t$,C%+1):=w$..H.|
00000820  dd 20 f2 62 28 42 25 29  0d 03 52 18 64 61 74 61  |. .b(B%)..R.data|
00000830  3f 4f 25 3d 42 25 3a 4f  25 3d 4f 25 2b 31 3a e1  |?O%=B%:O%=O%+1:.|
00000840  0d 03 5c 0c dd 20 f2 77  28 57 25 29 0d 03 66 19  |..\.. .w(W%)..f.|
00000850  57 25 3d 57 25 2b 62 61  73 65 3a f2 62 28 57 25  |W%=W%+base:.b(W%|
00000860  83 32 35 36 29 0d 03 70  10 f2 62 28 57 25 81 32  |.256)..p..b(W%.2|
00000870  35 36 29 3a e1 0d 03 7a  20 dd 20 a4 66 28 78 24  |56):...z . .f(x$|
00000880  2c 4c 25 29 3d c2 c4 4c  25 2c 22 20 22 29 2b 78  |,L%)=..L%," ")+x|
00000890  24 2c 4c 25 29 0d 03 84  12 dd 20 f2 78 28 58 25  |$,L%)..... .x(X%|
000008a0  2c 59 25 2c 74 24 29 0d  03 8e 13 f2 77 71 28 58  |,Y%,t$).....wq(X|
000008b0  25 29 3a f2 77 71 28 59  25 29 0d 03 98 12 f2 73  |%):.wq(Y%).....s|
000008c0  74 72 28 74 24 2b bd 31  33 29 3a e1 0d 03 a2 19  |tr(t$+.13):.....|
000008d0  dd 20 f2 77 71 28 57 25  29 3a f2 62 71 28 57 25  |. .wq(W%):.bq(W%|
000008e0  83 32 35 36 29 0d 03 ac  11 f2 62 71 28 57 25 81  |.256).....bq(W%.|
000008f0  32 35 36 29 3a e1 0d 03  b6 0d dd 20 f2 62 71 28  |256):...... .bq(|
00000900  42 25 29 0d 03 c0 18 64  61 74 61 3f 51 25 3d 42  |B%)....data?Q%=B|
00000910  25 3a 51 25 3d 51 25 2b  31 3a e1 0d 03 ca 1c dd  |%:Q%=Q%+1:......|
00000920  20 f2 73 74 72 28 78 24  29 3a 24 28 64 61 74 61  | .str(x$):$(data|
00000930  2b 51 25 29 3d 78 24 0d  03 d4 11 51 25 3d 51 25  |+Q%)=x$....Q%=Q%|
00000940  2b a9 78 24 2b 31 3a e1  0d 03 de 12 dd 20 f2 62  |+.x$+1:...... .b|
00000950  79 74 65 28 78 24 2c 6b  24 29 0d 03 e8 16 ea 20  |yte(x$,k$)..... |
00000960  42 25 2c 4c 25 2c 50 25  2c 5a 25 3a 42 25 3d 31  |B%,L%,P%,Z%:B%=1|
00000970  0d 03 f2 13 4c 25 3d a9  6b 24 3a e7 20 4c 25 3e  |....L%=.k$:. L%>|
00000980  38 20 85 0d 03 fc 0f e3  20 50 25 3d 31 20 b8 20  |8 ...... P%=1 . |
00000990  4c 25 0d 04 06 21 5a 25  3d 5a 25 84 28 28 a7 78  |L%...!Z%=Z%.((.x|
000009a0  24 2c c1 6b 24 2c 50 25  2c 31 29 29 3e 30 29 80  |$,.k$,P%,1))>0).|
000009b0  42 25 29 0d 04 10 0e 42  25 3d 42 25 2b 42 25 3a  |B%)....B%=B%+B%:|
000009c0  ed 0d 04 1a 0c f2 62 28  5a 25 29 3a e1 0d 04 24  |......b(Z%):...$|
000009d0  28 49 73 73 75 65 3a 20  20 20 20 56 6f 6c 75 6d  |(Issue:    Volum|
000009e0  65 2c 20 49 73 73 75 65  2c 20 4d 6f 6e 74 68 2c  |e, Issue, Month,|
000009f0  20 59 65 61 72 0d 04 2e  17 46 69 6c 65 73 3a 20  | Year....Files: |
00000a00  20 20 20 4e 75 6d 62 65  72 20 6f 66 0d 04 38 28  |   Number of..8(|
00000a10  4e 61 6d 65 3a 20 20 20  20 20 54 65 78 74 20 73  |Name:     Text s|
00000a20  74 72 69 6e 67 20 3c 33  30 20 63 68 61 72 61 63  |tring <30 charac|
00000a30  74 65 72 73 0d 04 42 22  50 61 67 65 3a 20 20 20  |ters..B"Page:   |
00000a40  20 20 50 61 67 65 20 6e  75 6d 62 65 72 20 28 73  |  Page number (s|
00000a50  74 72 69 6e 67 29 0d 04  4c 14 52 75 6e 3a 20 20  |tring)..L.Run:  |
00000a60  20 20 20 20 53 74 72 69  6e 67 0d 04 56 1c 4d 61  |    String..V.Ma|
00000a70  63 68 69 6e 65 3a 20 20  41 20 3d 20 41 72 63 68  |chine:  A = Arch|
00000a80  69 6d 65 64 65 73 0d 04  60 17 20 20 20 20 20 20  |imedes..`.      |
00000a90  20 20 20 20 42 20 3d 20  42 42 43 20 42 0d 04 6a  |    B = BBC B..j|
00000aa0  19 20 20 20 20 20 20 20  20 20 20 43 20 3d 20 43  |.          C = C|
00000ab0  6f 6d 70 61 63 74 0d 04  74 18 20 20 20 20 20 20  |ompact..t.      |
00000ac0  20 20 20 20 4d 20 3d 20  4d 61 73 74 65 72 0d 04  |    M = Master..|
00000ad0  7e 14 20 20 20 20 20 20  20 20 20 20 50 20 3d 20  |~.          P = |
00000ae0  42 2b 0d 04 88 15 20 20  20 20 20 20 20 20 20 20  |B+....          |
00000af0  5a 20 3d 20 5a 38 38 0d  04 92 17 54 79 70 65 3a  |Z = Z88....Type:|
00000b00  20 20 20 20 20 42 20 3d  20 42 61 73 69 63 0d 04  |     B = Basic..|
00000b10  9c 16 20 20 20 20 20 20  20 20 20 20 44 20 3d 20  |..          D = |
00000b20  44 61 74 61 0d 04 a6 20  20 20 20 20 20 20 20 20  |Data...         |
00000b30  20 20 45 20 3d 20 2a 45  58 45 43 61 62 6c 65 20  |  E = *EXECable |
00000b40  66 69 6c 65 0d 04 b0 1d  20 20 20 20 20 20 20 20  |file....        |
00000b50  20 20 4c 20 3d 20 2a c8  61 62 6c 65 20 66 69 6c  |  L = *.able fil|
00000b60  65 0d 04 ba 1f 20 20 20  20 20 20 20 20 20 20 52  |e....          R|
00000b70  20 3d 20 2a 52 55 4e 61  62 6c 65 20 66 69 6c 65  | = *RUNable file|
00000b80  0d 04 c4 22 20 20 20 20  20 20 20 20 20 20 53 20  |..."          S |
00000b90  3d 20 2a 53 52 4c 4f 41  44 61 62 6c 65 20 66 69  |= *SRLOADable fi|
00000ba0  6c 65 0d 04 ce 16 20 20  20 20 20 20 20 20 20 20  |le....          |
00000bb0  54 20 3d 20 54 65 78 74  0d 04 d8 16 46 53 3a 20  |T = Text....FS: |
00000bc0  20 20 20 20 20 20 41 20  3d 20 41 44 46 53 0d 04  |      A = ADFS..|
00000bd0  e2 15 20 20 20 20 20 20  20 20 20 20 43 20 3d 20  |..          C = |
00000be0  43 46 53 0d 04 ec 15 20  20 20 20 20 20 20 20 20  |CFS....         |
00000bf0  20 44 20 3d 20 44 46 53  0d 04 f6 1a 20 20 20 20  | D = DFS....    |
00000c00  20 20 20 20 20 20 54 20  3d 20 54 65 6c 65 74 65  |      T = Telete|
00000c10  78 74 0d 05 00 16 20 20  20 20 20 20 20 20 20 20  |xt....          |
00000c20  49 20 3d 20 49 45 45 45  0d 05 0a 17 48 65 6c 70  |I = IEEE....Help|
00000c30  3a 20 20 20 20 20 48 65  6c 70 20 74 65 78 74 0d  |:     Help text.|
00000c40  05 14 16 dc 20 38 2c 38  2c 4f 63 74 6f 62 65 72  |.... 8,8,October|
00000c50  2c 31 39 39 30 0d 05 1e  08 dc 20 31 36 0d 05 28  |,1990..... 16..(|
00000c60  1a dc 20 53 63 6f 72 70  69 6f 6e 20 50 61 74 69  |.. Scorpion Pati|
00000c70  65 6e 63 65 2c 35 35 0d  05 32 2a dc 20 50 41 47  |ence,55..2*. PAG|
00000c80  45 3d 26 31 31 30 30 3a  43 48 2e 22 53 63 6f 72  |E=&1100:CH."Scor|
00000c90  70 69 6f 22 7c 4d 2c 42  43 4d 50 2c 42 2c 41 44  |pio"|M,BCMP,B,AD|
00000ca0  43 0d 05 3c 27 dc 20 41  6e 6f 74 68 65 72 20 72  |C..<'. Another r|
00000cb0  65 61 6c 6c 79 20 67 6f  6f 64 20 70 61 74 69 65  |eally good patie|
00000cc0  6e 63 65 20 67 61 6d 65  0d 05 46 16 dc 20 54 69  |nce game..F.. Ti|
00000cd0  64 62 69 74 20 54 65 61  7a 65 72 2c 37 33 0d 05  |dbit Teazer,73..|
00000ce0  50 2a dc 20 50 41 47 45  3d 26 31 39 30 30 3a 43  |P*. PAGE=&1900:C|
00000cf0  48 2e 22 54 69 64 62 69  74 73 22 7c 4d 2c 42 43  |H."Tidbits"|M,BC|
00000d00  4d 50 2c 42 2c 41 44 43  0d 05 5a 34 dc 20 54 72  |MP,B,ADC..Z4. Tr|
00000d10  79 20 6f 75 74 20 74 68  69 73 20 31 39 33 30 27  |y out this 1930'|
00000d20  73 20 62 6c 6f 63 6b 20  70 75 7a 7a 6c 65 20 2d  |s block puzzle -|
00000d30  2d 20 69 74 27 73 20 68  61 72 64 21 0d 05 64 13  |- it's hard!..d.|
00000d40  dc 20 53 52 42 75 69 6c  64 20 23 31 2c 39 39 0d  |. SRBuild #1,99.|
00000d50  05 6e 29 dc 20 50 41 47  45 3d 26 31 39 30 30 3a  |.n). PAGE=&1900:|
00000d60  43 48 2e 22 53 52 42 75  69 6c 64 22 7c 4d 2c 43  |CH."SRBuild"|M,C|
00000d70  4d 50 2c 42 2c 41 44 43  0d 05 78 2c dc 20 52 65  |MP,B,ADC..x,. Re|
00000d80  61 64 20 74 68 65 20 6d  61 67 61 7a 69 6e 65 20  |ad the magazine |
00000d90  2d 2d 20 74 68 69 73 20  69 73 20 68 6f 74 20 73  |-- this is hot s|
00000da0  74 75 66 66 0d 05 82 13  dc 20 53 52 42 75 69 6c  |tuff..... SRBuil|
00000db0  64 20 23 32 2c 39 39 0d  05 8c 26 dc 20 50 41 47  |d #2,99...&. PAG|
00000dc0  45 3d 26 31 39 30 30 3a  43 48 2e 22 53 52 42 32  |E=&1900:CH."SRB2|
00000dd0  22 7c 4d 2c 43 4d 50 2c  42 2c 41 44 43 0d 05 96  |"|M,CMP,B,ADC...|
00000de0  2c dc 20 52 65 61 64 20  74 68 65 20 6d 61 67 61  |,. Read the maga|
00000df0  7a 69 6e 65 20 2d 2d 20  74 68 69 73 20 69 73 20  |zine -- this is |
00000e00  68 6f 74 20 73 74 75 66  66 0d 05 a0 13 dc 20 53  |hot stuff..... S|
00000e10  52 42 75 69 6c 64 20 23  33 2c 39 39 0d 05 aa 26  |RBuild #3,99...&|
00000e20  dc 20 50 41 47 45 3d 26  31 39 30 30 3a 43 48 2e  |. PAGE=&1900:CH.|
00000e30  22 53 52 42 33 22 7c 4d  2c 43 4d 50 2c 42 2c 41  |"SRB3"|M,CMP,B,A|
00000e40  44 43 0d 05 b4 2c dc 20  52 65 61 64 20 74 68 65  |DC...,. Read the|
00000e50  20 6d 61 67 61 7a 69 6e  65 20 2d 2d 20 74 68 69  | magazine -- thi|
00000e60  73 20 69 73 20 68 6f 74  20 73 74 75 66 66 0d 05  |s is hot stuff..|
00000e70  be 13 dc 20 53 52 42 75  69 6c 64 20 23 34 2c 39  |... SRBuild #4,9|
00000e80  39 0d 05 c8 26 dc 20 50  41 47 45 3d 26 31 39 30  |9...&. PAGE=&190|
00000e90  30 3a 43 48 2e 22 53 52  42 34 22 7c 4d 2c 43 4d  |0:CH."SRB4"|M,CM|
00000ea0  50 2c 42 2c 41 44 43 0d  05 d2 2c dc 20 52 65 61  |P,B,ADC...,. Rea|
00000eb0  64 20 74 68 65 20 6d 61  67 61 7a 69 6e 65 20 2d  |d the magazine -|
00000ec0  2d 20 74 68 69 73 20 69  73 20 68 6f 74 20 73 74  |- this is hot st|
00000ed0  75 66 66 0d 05 dc 1c dc  20 52 6f 75 74 2e 4d 61  |uff..... Rout.Ma|
00000ee0  74 74 2e 3a 20 57 69 70  65 53 72 63 2c 33 37 0d  |tt.: WipeSrc,37.|
00000ef0  05 e6 27 dc 20 50 41 47  45 3d 26 31 39 30 30 3a  |..'. PAGE=&1900:|
00000f00  43 48 2e 22 52 2e 57 69  70 65 22 7c 4d 2c 43 4d  |CH."R.Wipe"|M,CM|
00000f10  2c 42 2c 41 44 43 0d 05  f0 1c dc 20 41 64 64 20  |,B,ADC..... Add |
00000f20  2a 57 49 50 45 20 74 6f  20 79 6f 75 72 20 41 44  |*WIPE to your AD|
00000f30  46 53 0d 05 fa 1c dc 20  52 6f 75 74 2e 4d 61 74  |FS..... Rout.Mat|
00000f40  74 2e 3a 20 54 6d 70 43  6f 6e 76 2c 33 37 0d 06  |t.: TmpConv,37..|
00000f50  04 2d dc 20 50 41 47 45  3d 26 31 39 30 30 3a 43  |.-. PAGE=&1900:C|
00000f60  48 2e 22 52 2e 54 6d 70  43 6f 6e 76 22 7c 4d 2c  |H."R.TmpConv"|M,|
00000f70  41 42 43 4d 50 2c 42 2c  41 44 43 0d 06 0e 29 dc  |ABCMP,B,ADC...).|
00000f80  20 43 6f 6e 76 65 72 74  20 74 65 6d 70 65 72 61  | Convert tempera|
00000f90  74 75 72 65 73 20 62 65  74 77 65 65 6e 20 72 61  |tures between ra|
00000fa0  6e 67 65 73 0d 06 18 1a  dc 20 52 6f 75 74 2e 4d  |nges..... Rout.M|
00000fb0  61 74 74 2e 3a 20 43 6f  64 65 72 2c 33 37 0d 06  |att.: Coder,37..|
00000fc0  22 2b dc 20 50 41 47 45  3d 26 31 39 30 30 3a 43  |"+. PAGE=&1900:C|
00000fd0  48 2e 22 52 2e 43 6f 64  65 72 22 7c 4d 2c 41 42  |H."R.Coder"|M,AB|
00000fe0  43 4d 50 2c 42 2c 41 44  43 0d 06 2c 1c dc 20 45  |CMP,B,ADC..,.. E|
00000ff0  6e 63 6f 64 65 20 61 6e  64 20 64 65 63 6f 64 65  |ncode and decode|
00001000  20 74 65 78 74 0d 06 36  1c dc 20 52 6f 75 74 2e  | text..6.. Rout.|
00001010  4d 61 74 74 2e 3a 20 50  6f 6c 79 67 6f 6e 2c 33  |Matt.: Polygon,3|
00001020  37 0d 06 40 3c dc 20 2a  7c 7c 20 50 6f 6c 79 67  |7..@<. *|| Polyg|
00001030  6f 6e 20 69 73 20 61 20  74 65 78 74 20 66 69 6c  |on is a text fil|
00001040  65 20 66 6f 72 20 4c 6f  67 6f 20 6f 6e 6c 79 7c  |e for Logo only||
00001050  4d 2c 41 42 43 4d 50 2c  54 2c 41 44 43 0d 06 4a  |M,ABCMP,T,ADC..J|
00001060  1c dc 20 41 20 4c 4f 47  4f 20 70 6f 6c 79 67 6f  |.. A LOGO polygo|
00001070  6e 20 72 6f 75 74 69 6e  65 0d 06 54 1a dc 20 52  |n routine..T.. R|
00001080  6f 75 74 2e 4d 61 74 74  2e 3a 20 50 61 74 63 68  |out.Matt.: Patch|
00001090  2c 33 37 0d 06 5e 2a dc  20 50 41 47 45 3d 26 31  |,37..^*. PAGE=&1|
000010a0  39 30 30 3a 43 48 2e 22  52 2e 50 61 74 63 68 22  |900:CH."R.Patch"|
000010b0  7c 4d 2c 42 43 4d 50 2c  42 2c 41 44 43 0d 06 68  ||M,BCMP,B,ADC..h|
000010c0  3a dc 20 53 65 6c 65 63  74 73 20 41 6d 65 72 69  |:. Selects Ameri|
000010d0  63 61 6e 20 63 68 61 72  61 63 74 65 72 20 73 65  |can character se|
000010e0  74 20 74 6f 20 70 72 69  6e 74 20 23 20 63 6f 72  |t to print # cor|
000010f0  72 65 63 74 6c 79 2e 0d  06 72 20 dc 20 52 61 6e  |rectly...r . Ran|
00001100  64 6f 6d 20 41 63 63 65  73 73 20 46 69 6c 65 73  |dom Access Files|
00001110  20 23 31 2c 31 30 39 0d  06 7c 28 dc 20 50 41 47  | #1,109..|(. PAG|
00001120  45 3d 26 31 39 30 30 3a  43 48 2e 22 52 41 46 31  |E=&1900:CH."RAF1|
00001130  22 7c 4d 2c 41 42 43 4d  50 2c 42 2c 41 44 43 0d  |"|M,ABCMP,B,ADC.|
00001140  06 86 1f dc 20 46 69 6e  64 73 20 6f 75 74 20 6c  |.... Finds out l|
00001150  65 6e 67 74 68 20 6f 66  20 66 69 6c 65 73 0d 06  |ength of files..|
00001160  90 20 dc 20 52 61 6e 64  6f 6d 20 41 63 63 65 73  |. . Random Acces|
00001170  73 20 46 69 6c 65 73 20  23 32 2c 31 30 39 0d 06  |s Files #2,109..|
00001180  9a 29 dc 20 50 41 47 45  3d 26 31 39 30 30 3a 43  |.). PAGE=&1900:C|
00001190  48 2e 22 50 68 6f 6e 65  22 7c 4d 2c 41 42 43 4d  |H."Phone"|M,ABCM|
000011a0  50 2c 42 2c 41 44 43 0d  06 a4 12 dc 20 41 20 70  |P,B,ADC..... A p|
000011b0  68 6f 6e 65 20 62 6f 6f  6b 0d 06 ae 1c dc 20 52  |hone book..... R|
000011c0  61 6d 20 42 6f 61 72 64  3a 20 54 65 73 74 20 70  |am Board: Test p|
000011d0  72 6f 67 2c 2d 0d 06 b8  4e dc 20 2a 7c 7c 20 50  |rog,-...N. *|| P|
000011e0  72 65 73 73 20 43 4f 50  59 20 66 72 6f 6d 20 6d  |ress COPY from m|
000011f0  65 6e 75 20 74 6f 20 72  65 61 64 20 74 65 78 74  |enu to read text|
00001200  20 61 62 6f 75 74 20 74  68 69 73 20 70 72 6f 67  | about this prog|
00001210  72 61 6d 2e 2e 2e 7c 4d  2c 42 43 4d 50 2c 42 2c  |ram...|M,BCMP,B,|
00001220  41 44 43 0d 06 c2 66 dc  20 49 74 27 73 20 6c 69  |ADC...f. It's li|
00001230  6b 65 20 74 68 69 73 20  2d 20 74 68 65 20 70 72  |ke this - the pr|
00001240  6f 67 72 61 6d 20 68 61  73 20 62 65 65 6e 20 73  |ogram has been s|
00001250  65 6e 74 20 62 61 63 6b  20 74 6f 20 52 6f 62 2e  |ent back to Rob.|
00001260  20 49 66 20 79 6f 75 27  72 65 20 64 65 73 70 65  | If you're despe|
00001270  72 61 74 65 20 77 72 69  74 65 20 74 6f 20 68 69  |rate write to hi|
00001280  6d 20 76 69 61 20 75 73  2e 0d 06 cc 17 dc 20 43  |m via us...... C|
00001290  68 65 63 6b 73 75 6d 73  20 28 6e 65 77 29 2c 2d  |hecksums (new),-|
000012a0  0d 06 d6 15 dc 20 2a 78  73 7c 4d 2c 42 43 4d 50  |..... *xs|M,BCMP|
000012b0  2c 52 2c 41 44 0d 06 e0  3e dc 20 54 68 65 20 31  |,R,AD...>. The 1|
000012c0  39 38 39 20 76 65 72 73  69 6f 6e 20 77 68 69 63  |989 version whic|
000012d0  68 20 68 61 6e 64 6c 65  73 20 44 41 54 41 20 73  |h handles DATA s|
000012e0  74 61 74 65 6d 65 6e 74  73 20 63 6f 72 72 65 63  |tatements correc|
000012f0  74 6c 79 0d 06 ea 17 dc  20 43 68 65 63 6b 73 75  |tly..... Checksu|
00001300  6d 73 20 28 6f 6c 64 29  2c 2d 0d 06 f4 17 dc 20  |ms (old),-..... |
00001310  2a 78 73 75 6d 7c 4d 2c  42 43 4d 50 2c 52 2c 41  |*xsum|M,BCMP,R,A|
00001320  44 0d 06 fe 48 dc 20 54  68 65 20 31 39 38 38 20  |D...H. The 1988 |
00001330  76 65 72 73 69 6f 6e 20  74 68 61 74 20 77 69 6c  |version that wil|
00001340  6c 20 63 68 65 63 6b 73  75 6d 20 72 61 6e 67 65  |l checksum range|
00001350  73 20 6f 66 20 6c 69 6e  65 73 20 61 6e 64 20 70  |s of lines and p|
00001360  72 69 6e 74 20 74 6f 6f  2e 0d ff                 |rint too...|
0000136b