Home » CEEFAX disks » telesoftware4.adl » 10-01-88/INLAY
10-01-88/INLAY
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 » CEEFAX disks » telesoftware4.adl |
Filename: | 10-01-88/INLAY |
Read OK: | ✔ |
File size: | 1887 bytes |
Load address: | FFFF1900 |
Exec address: | FFFF8023 |
Duplicates
There is 1 duplicate copy of this file in the archive:
- CEEFAX disks » telesoftware4.adl » 10-01-88/INLAY
- CEEFAX disks » telesoftware8.adl » 13-08-88/INLAY
File contents
1REM Cassette Inlay Printer 2REM *** Mervyn Jackson *** 3REM **** BBC Computer **** 4REM *** Epson Printer *** 10MODE7 20ON ERROR PROCreport 30PROCinit:PROCmenu 40END 50DEF PROCinit 60VDU23;8202;0;0;0; 70DIM A$(38) 80DIM title$(2) 90DIM detail$(2) 100DIM dolby$(2) 110C$="" 120ENDPROC 130DEF PROCcass 140side=1 150input$="type of cassette" 160PROCinput(11) 170IFin$=""THEN C$=C$ ELSE C$=in$ 180ENDPROC 190DEF PROCmenu 200ON ERROR PROCreport 210CLS 215*FX21,0 220PRINTTAB(2,2)CHR$131"CASSETTE INDEX LABEL MENU"; 230IFC$<>""THEN PRINT" FOR" 240PRINTTAB(14);CHR$131C$ 250PRINTTAB(3,5);CHR$133"S";CHR$135"ave data"' 260PRINTTAB(3);CHR$133"L";CHR$135"oad data"' 270PRINTTAB(3);CHR$133"P";CHR$135"rint full index card"' 280PRINTTAB(3);CHR$133"T";CHR$135"itle only to printer"' 290PRINTTAB(3);CHR$133"E";CHR$135"nter new details"' 300PRINTTAB(3);CHR$133"V";CHR$135"iew/Amend existing details"' 305PRINTTAB(3);CHR$133"Q";CHR$135"uit program"'' 310PRINTTAB(2)CHR$130"PLEASE SELECT OPTION�" 320x$=GET$ 330IFx$="E" OR x$="e"THEN PROCcass:PROCside:PROCtitle:PROCtrack:PROCscreenprint 340IFx$="V" OR x$="v"THEN PROCcass:PROCside:PROCscreenprint 350IFx$="P" OR x$="p" PROCpprint 360IFx$="T" OR x$="t" PROCtprint 370IFx$="S" OR x$="s" THEN PROCsave 380IFx$="L" OR x$="l" THEN PROCload 385IFx$="Q" OR x$="q" THEN PROCquit 390GOTO210 400ENDPROC 410DEF PROCside 420CLS 430PRINTTAB(3,5)"Enter/View information for"''TAB(15)"SIDE 1 or SIDE 2 ?"TAB(5,23)"]Press <RETURN> to abort[" 440x$=GET$ 450side=VALx$ 460IFside<>0AND side<>1AND side<>2 THEN 430 470IFside=0 THEN PROCmenu 480IFside=1 THEN beg=1 ELSE beg=20 490ENDPROC 500DEF PROCtitle 510ti=1 520CLS 530input$="new Title (max 26 chars)":PROCinput(26) 540IFin$=""THEN title$(side)=title$(side) ELSE title$(side)=in$ 550input$="Details for SIDE "+STR$(side)+" (max 65 chars)":PROCinput(65) 560IFin$=""THEN detail$(side)=detail$(side) ELSE detail$(side)=in$ 570input$="DOLBY for SIDE "+STR$(side)+" (max 3 chars)":PROCinput(3) 580IFin$=""THEN dolby$(side)=dolby$(side) ELSE dolby$(side)=in$ 590ENDPROC 600DEF PROCtrack 610FORtrack=beg TO beg+18 620input$="Text (max 31 chars)":PROCinput(31) 630IFin$="" THEN A$(track)=A$(track) ELSE A$(track)=in$ 640NEXT 650ENDPROC 660DEF PROCinput(length) 670in$="" 680IFside=1 THEN asc=64 ELSE asc=45 690CLS 700IFlength=26 THEN PRINT TAB(0,5)"SIDE ";side;" existing Title is"''title$(side)'' 710IFlength=65 THEN PRINT TAB(0,5)"SIDE ";side;" existing Details are"''detail$(side)'' 720IFlength=31 THEN PRINT TAB(0,5)"SIDE ";side;" TRACK ";CHR$(track+asc);" existing Text is"''A$(track)'' 730IFlength=3 THEN PRINT TAB(0,5)"SIDE ";side;" existing DOLBY detail is"''dolby$(side)'' 740IFlength=11 THEN PRINT TAB(0,5)"Existing type is"''C$'' 750PRINT"Enter ";input$''"or press <RETURN> if OK" 760z$=GET$ 770IF ASC z$=13 THEN ENDPROC 780IF ASC z$=127 THEN in$=LEFT$(in$,LENin$-1) ELSE in$=in$+z$ 790IF LEN in$>length THEN in$=LEFT$(in$,length):VDU7 800PRINTTAB(0,16);in$;" " 810GOTO760 820ENDPROC 830DEF PROCscreenprint 840CLS 850PRINT title$(side);TAB(31,0);"DOLBY ";dolby$(side);TAB(0,1);detail$(side);TAB(31,2);"SIDE ";side' 860IFside=1 THEN beg=1 ELSE beg=20 870IFside=1 THEN asc=64 ELSE asc=45 880FORtrack=beg TO beg+18 890VDUtrack+asc; 900PRINT" ";A$(track) 910NEXT 920PROCcheck 930ENDPROC 940DEF PROCcheck 950ti=0 960PRINT"Enter track to amend-<T> for Title"'"or <RETURN> if OK"; 970x=GET 980IFx=84 OR x=116 THEN PROCtitle 990IFx>90 THEN x=x-32 1000IFx=13 THEN ENDPROC 1010IFside=1 THEN track=x-64 ELSE track=x-45 1020IFtrack<1 OR track>side*19 THEN 1060 1030IFti=1 THEN 1060 1040input$="Text (max 31 chars)":PROCinput(31) 1050IFin$="" THEN A$(track)=A$(track) ELSE A$(track)=in$ 1060PROCscreenprint 1070ENDPROC 1080DEF PROCpad 1090FORtrack=1TO38 1100A$(track)=A$(track)+STRING$(32-LENA$(track)," ") 1110NEXT 1120FORside=1TO2 1130title$(side)=title$(side)+STRING$(26-LENtitle$(side)," ") 1140detail$(side)=detail$(side)+STRING$(65-LENdetail$(side)," ") 1150NEXT 1160ENDPROC 1170DEF PROCpprint 1172PROCdatacheck:IFdatalen=0 VDU7:PRINTTAB(2,20);CHR$129"You have not entered any data yet!":FORwait=1TO6000:NEXT:ENDPROC 1174PROConline:IF buffer=FALSE ENDPROC 1176PRINTTAB(2,20);CHR$129"PRINTING IN PROGRESS - PLEASE WAIT" 1180PROCpad 1190*FX3,10 1200VDU27,64:REM Reset to default 1210VDU27,51,14:REM 14/216 line space 1220VDU27,15:REM Condensed print 1230VDU27,85,1:REM unidir print 1240PRINT"SIDE 1 DOLBY ";dolby$(1);TAB(34);"SIDE 2 DOLBY ";dolby$(2) 1250VDU27,51,18:REM 18/216 line space 1260PRINT STRING$(65,"-");" |" 1270VDU27,51,27:REM 27/216 line space 1280FORtrack=1TO19 1290PRINT A$(track);"| ";A$(track+19);" |" 1300NEXT 1310PRINT STRING$(65,"-");" |" 1320PRINT"SIDE 1: "; 1330VDU27,14:REM Enlarged print with self cancellation 1340VDU27,71:REM Double strike 1350PRINTtitle$(1) 1360VDU18:REM Cancel Condensed print 1370VDU27,72:REM Cancel Double strike 1380PRINT TAB(38-LEN C$);C$ 1390VDU27,15:REM Condensed print 1400PRINT"SIDE 2: "; 1410VDU27,14:REM Enlarged print with self cancellation 1420VDU27,71:REM Double strike 1430PRINTtitle$(2) 1440VDU27,72:REM Cancel Double strike 1450PRINT STRING$(65,"-");" |" 1460PRINT"SIDE 1:";TAB(67)"|"'detail$(1);" |"'"SIDE 2:";TAB(67)"|"'detail$(2);" |" 1470PRINTTAB(67);"|" 1480FORst=1TO3:PRINT STRING$(65,"*");" |":NEXT 1490PRINT 1500*FX3,0 1510ENDPROC 1520DEF PROCsave 1530PROCdatacheck:IFdatalen=0 VDU7:PRINTTAB(2,20);CHR$129"You have not entered any data yet!":FORwait=1TO6000:NEXT:ENDPROC 1540ON ERROR PROCreport 1550INPUT"ENTER FILE NAME TO SAVE : "x$ 1560ch%=OPENOUT(x$) 1570FORx=1TO38 1580PRINT#ch%,A$(x) 1590NEXT 1600FORx=1TO2 1610PRINT#ch%,title$(x),detail$(x),dolby$(x) 1620NEXT 1630PRINT#ch%,C$ 1640CLOSE#ch% 1650ENDPROC 1660DEF PROCload 1670ON ERROR PROCreport 1680INPUT"ENTER FILE NAME TO LOAD : "x$ 1690ch%=OPENIN(x$) 1700FORx=1TO38 1710INPUT#ch%,A$(x) 1720NEXT 1730FORx=1TO2 1740INPUT#ch%,title$(x),detail$(x),dolby$(x) 1750NEXT 1760INPUT#ch%,C$ 1770CLOSE#ch% 1780ENDPROC 1790DEF PROCreport 1800ON ERROR OFF 1810CLOSE#0:*FX3,0 1820REPORT 1830PRINT'"Error code number ";ERR;" at Line number ";ERL 1840PRINT"PRESS <ESC> TO STOP PROGRAM"'"PRESS <M> FOR MENU" 1850x$=GET$ 1860IF x$="M" THEN PROCmenu 1870GOTO1820 1880ENDPROC 1890DEF PROCtprint 1892datalen=0:FORZ%=1TO2:datalen=datalen+LEN(title$(Z%)):NEXT:IFdatalen=0 VDU7:PRINTTAB(2,20);CHR$129"You have not entered a title yet!":FORwait=1TO6000:NEXT:ENDPROC 1894PROConline:IF buffer=FALSE ENDPROC 1896PRINTTAB(2,20);CHR$129"PRINTING IN PROGRESS - PLEASE WAIT":FORwait=1TO1000:NEXT 1900*FX3,10 1910VDU27,64:REM Reset to default 1920VDU27,15:REM Condensed Print 1930VDU27,85,1:REM unidir print 1940VDU27,50:REM line space 1/6 inch 1950PRINT"SIDE 1: "; 1960VDU27,14:REM Enlarged print with self cancellation 1970VDU27,71:REM Double strike 1980PRINTtitle$(1) 1990VDU27,72:REM Cancel Double strike 2000PRINT"SIDE 2: "; 2010VDU27,14:REM Enlarged print with self cancellation 2020VDU27,71:REM Double strike 2030PRINTtitle$(2) 2040VDU27,72:REM Cancel Double strike 2050*FX3,0 2060ENDPROC 2070DEF PROConline 2080*FX21,3 2085*FX3,10 2090VDU2,1:FORW%=1TO500:NEXT:VDU3 2095*FX3,0 2100IF ADVAL(-4)<>63 buffer=FALSE:VDU7:PRINTTAB(2,20);CHR$129"Printer is busy or not on line"'TAB(21)CHR$129" - please check.":FORwait=1TO6000:NEXT:ELSE buffer=TRUE 2110*FX21,3 2120ENDPROC 2130DEF PROCquit 2140CLS:PROCdatacheck 2160IF datalen=0 PRINTCHR$133"END";:END:ELSE PRINTTAB(0,6)"You have entered data."''"Press";:PRINTCHR$130"RETURN";:PRINTCHR$135"to return to the Menu."''"Any other key will END the program and may lose the data." 2170x$=GET$ 2180IF ASC x$=13 PROCmenu ELSE PRINTCHR$133"END";:END 2190ENDPROC 2200DEF PROCdatacheck 2210datalen=0 2220FORZ%=1TO38:datalen=datalen+LEN(A$(Z%)):NEXT 2230FORZ%=1TO2:datalen=datalen+LEN(title$(Z%)):NEXT 2240FORZ%=1TO2:datalen=datalen+LEN(detail$(Z%)):NEXT 2250FORZ%=1TO2:datalen=datalen+LEN(dolby$(Z%)):NEXT 2260datalen=datalen+LEN(C$) 2270ENDPROC
� Cassette Inlay Printer � *** Mervyn Jackson *** � **** BBC Computer **** � *** Epson Printer *** �7 � � �report �init:�menu (� 2� �init <�23;8202;0;0;0; F� A$(38) P� title$(2) Z� detail$(2) d� dolby$(2) n C$="" x� �� �cass � side=1 �input$="type of cassette" ��input(11) ��in$=""� C$=C$ � C$=in$ �� �� �menu �� � �report �� �*FX21,0 �*�2,2)�131"CASSETTE INDEX LABEL MENU"; ��C$<>""� �" FOR" ��14);�131C$ �"�3,5);�133"S";�135"ave data"' �3);�133"L";�135"oad data"' ,�3);�133"P";�135"rint full index card"' ,�3);�133"T";�135"itle only to printer"' "(�3);�133"E";�135"nter new details"' ,2�3);�133"V";�135"iew/Amend existing details"' 1$�3);�133"Q";�135"uit program"'' 6#�2)�130"PLEASE SELECT OPTION�" @x$=� J<�x$="E" � x$="e"� �cass:�side:�title:�track:�screenprint T.�x$="V" � x$="v"� �cass:�side:�screenprint ^�x$="P" � x$="p" �pprint h�x$="T" � x$="t" �tprint r�x$="S" � x$="s" � �save |�x$="L" � x$="l" � �load ��x$="Q" � x$="q" � �quit � �dR@ �� �� �side �� �a�3,5)"Enter/View information for"''�15)"SIDE 1 or SIDE 2 ?"�5,23)"]Press <RETURN> to abort[" �x$=� �side=�x$ �%�side<>0� side<>1� side<>2 � �tnA ��side=0 � �menu ��side=1 � beg=1 � beg=20 �� �� �title �ti=1 � 0input$="new Title (max 26 chars)":�input(26) 9�in$=""� title$(side)=title$(side) � title$(side)=in$ &Cinput$="Details for SIDE "+�(side)+" (max 65 chars)":�input(65) 0<�in$=""� detail$(side)=detail$(side) � detail$(side)=in$ :?input$="DOLBY for SIDE "+�(side)+" (max 3 chars)":�input(3) D9�in$=""� dolby$(side)=dolby$(side) � dolby$(side)=in$ N� X� �track b�track=beg � beg+18 l+input$="Text (max 31 chars)":�input(31) v1�in$="" � A$(track)=A$(track) � A$(track)=in$ �� �� �� �input(length) � in$="" ��side=1 � asc=64 � asc=45 �� �I�length=26 � � �0,5)"SIDE ";side;" existing Title is"''title$(side)'' �M�length=65 � � �0,5)"SIDE ";side;" existing Details are"''detail$(side)'' �\�length=31 � � �0,5)"SIDE ";side;" TRACK ";�(track+asc);" existing Text is"''A$(track)'' �O�length=3 � � �0,5)"SIDE ";side;" existing DOLBY detail is"''dolby$(side)'' �0�length=11 � � �0,5)"Existing type is"''C$'' �/�"Enter ";input$''"or press <RETURN> if OK" �z$=� � � z$=13 � � .� � z$=127 � in$=�in$,�in$-1) � in$=in$+z$ (� � in$>length � in$=�in$,length):�7 �0,16);in$;" " * �dxB 4� >� �screenprint H� RX� title$(side);�31,0);"DOLBY ";dolby$(side);�0,1);detail$(side);�31,2);"SIDE ";side' \�side=1 � beg=1 � beg=20 f�side=1 � asc=64 � asc=45 p�track=beg � beg+18 z�track+asc; ��" ";A$(track) �� � �check �� �� �check �ti=0 �>�"Enter track to amend-<T> for Title"'"or <RETURN> if OK"; �x=� ��x=84 � x=116 � �title ��x>90 � x=x-32 � �x=13 � � �%�side=1 � track=x-64 � track=x-45 �#�track<1 � track>side*19 � �TdD �ti=1 � �TdD +input$="Text (max 31 chars)":�input(31) 1�in$="" � A$(track)=A$(track) � A$(track)=in$ $�screenprint .� 8 � �pad B�track=1�38 L+A$(track)=A$(track)+�32-�A$(track)," ") V� ` �side=1�2 j4title$(side)=title$(side)+�26-�title$(side)," ") t7detail$(side)=detail$(side)+�65-�detail$(side)," ") ~� �� � � �pprint �^�datacheck:�datalen=0 �7:�2,20);�129"You have not entered any data yet!":�wait=1�6000:�:� ��online:� buffer=� � �4�2,20);�129"PRINTING IN PROGRESS - PLEASE WAIT" ��pad �*FX3,10 ��27,64:� Reset to default �!�27,51,14:� 14/216 line space ��27,15:� Condensed print ��27,85,1:� unidir print �A�"SIDE 1 DOLBY ";dolby$(1);�34);"SIDE 2 DOLBY ";dolby$(2) �!�27,51,18:� 18/216 line space �� �65,"-");" |" �!�27,51,27:� 27/216 line space �track=1�19 &� A$(track);"| ";A$(track+19);" |" � � �65,"-");" |" (�"SIDE 1: "; 22�27,14:� Enlarged print with self cancellation <�27,71:� Double strike F�title$(1) P �18:� Cancel Condensed print Z!�27,72:� Cancel Double strike d� �38-� C$);C$ n�27,15:� Condensed print x�"SIDE 2: "; �2�27,14:� Enlarged print with self cancellation ��27,71:� Double strike ��title$(2) �!�27,72:� Cancel Double strike �� �65,"-");" |" �J�"SIDE 1:";�67)"|"'detail$(1);" |"'"SIDE 2:";�67)"|"'detail$(2);" |" � �67);"|" ��st=1�3:� �65,"*");" |":� �� � *FX3,0 �� �� �save �^�datacheck:�datalen=0 �7:�2,20);�129"You have not entered any data yet!":�wait=1�6000:�:� � � �report #�"ENTER FILE NAME TO SAVE : "x$ ch%=�(x$) "�x=1�38 ,�#ch%,A$(x) 6� @ �x=1�2 J(�#ch%,title$(x),detail$(x),dolby$(x) T� ^�#ch%,C$ h �#ch% r� |� �load �� � �report �#�"ENTER FILE NAME TO LOAD : "x$ � ch%=�(x$) ��x=1�38 ��#ch%,A$(x) �� � �x=1�2 �(�#ch%,title$(x),detail$(x),dolby$(x) �� ��#ch%,C$ � �#ch% �� � � �report � � � �#0:*FX3,0 � &1�'"Error code number ";�;" at Line number ";� 07�"PRESS <ESC> TO STOP PROGRAM"'"PRESS <M> FOR MENU" :x$=� D� x$="M" � �menu N �T\G X� b � �tprint d�datalen=0:�Z%=1�2:datalen=datalen+�(title$(Z%)):�:�datalen=0 �7:�2,20);�129"You have not entered a title yet!":�wait=1�6000:�:� f�online:� buffer=� � hC�2,20);�129"PRINTING IN PROGRESS - PLEASE WAIT":�wait=1�1000:� l*FX3,10 v�27,64:� Reset to default ��27,15:� Condensed Print ��27,85,1:� unidir print � �27,50:� line space 1/6 inch ��"SIDE 1: "; �2�27,14:� Enlarged print with self cancellation ��27,71:� Double strike ��title$(1) �!�27,72:� Cancel Double strike ��"SIDE 2: "; �2�27,14:� Enlarged print with self cancellation ��27,71:� Double strike ��title$(2) �!�27,72:� Cancel Double strike *FX3,0 � � �online *FX21,3 %*FX3,10 *�2,1:�W%=1�500:�:�3 / *FX3,0 4}� �(-4)<>63 buffer=�:�7:�2,20);�129"Printer is busy or not on line"'�21)�129" - please check.":�wait=1�6000:�:� buffer=� >*FX21,3 H� R� �quit \�:�datacheck p�� datalen=0 �133"END";:�:� �0,6)"You have entered data."''"Press";:�130"RETURN";:�135"to return to the Menu."''"Any other key will END the program and may lose the data." zx$=� �#� � x$=13 �menu � �133"END";:� �� �� �datacheck � datalen=0 �(�Z%=1�38:datalen=datalen+�(A$(Z%)):� �+�Z%=1�2:datalen=datalen+�(title$(Z%)):� �,�Z%=1�2:datalen=datalen+�(detail$(Z%)):� �+�Z%=1�2:datalen=datalen+�(dolby$(Z%)):� �datalen=datalen+�(C$) �� �
00000000 0d 00 01 1c f4 20 43 61 73 73 65 74 74 65 20 49 |..... Cassette I| 00000010 6e 6c 61 79 20 50 72 69 6e 74 65 72 0d 00 02 1c |nlay Printer....| 00000020 f4 20 2a 2a 2a 20 4d 65 72 76 79 6e 20 4a 61 63 |. *** Mervyn Jac| 00000030 6b 73 6f 6e 20 2a 2a 2a 0d 00 03 1c f4 20 2a 2a |kson ***..... **| 00000040 2a 2a 20 42 42 43 20 43 6f 6d 70 75 74 65 72 20 |** BBC Computer | 00000050 2a 2a 2a 2a 0d 00 04 1c f4 20 2a 2a 2a 20 45 70 |****..... *** Ep| 00000060 73 6f 6e 20 20 50 72 69 6e 74 65 72 20 2a 2a 2a |son Printer ***| 00000070 0d 00 0a 06 eb 37 0d 00 14 0f ee 20 85 20 f2 72 |.....7..... . .r| 00000080 65 70 6f 72 74 0d 00 1e 0f f2 69 6e 69 74 3a f2 |eport.....init:.| 00000090 6d 65 6e 75 0d 00 28 05 e0 0d 00 32 0b dd 20 f2 |menu..(....2.. .| 000000a0 69 6e 69 74 0d 00 3c 13 ef 32 33 3b 38 32 30 32 |init..<..23;8202| 000000b0 3b 30 3b 30 3b 30 3b 0d 00 46 0c de 20 41 24 28 |;0;0;0;..F.. A$(| 000000c0 33 38 29 0d 00 50 0f de 20 74 69 74 6c 65 24 28 |38)..P.. title$(| 000000d0 32 29 0d 00 5a 10 de 20 64 65 74 61 69 6c 24 28 |2)..Z.. detail$(| 000000e0 32 29 0d 00 64 0f de 20 64 6f 6c 62 79 24 28 32 |2)..d.. dolby$(2| 000000f0 29 0d 00 6e 09 43 24 3d 22 22 0d 00 78 05 e1 0d |)..n.C$=""..x...| 00000100 00 82 0b dd 20 f2 63 61 73 73 0d 00 8c 0a 73 69 |.... .cass....si| 00000110 64 65 3d 31 0d 00 96 1d 69 6e 70 75 74 24 3d 22 |de=1....input$="| 00000120 74 79 70 65 20 6f 66 20 63 61 73 73 65 74 74 65 |type of cassette| 00000130 22 0d 00 a0 0e f2 69 6e 70 75 74 28 31 31 29 0d |".....input(11).| 00000140 00 aa 1b e7 69 6e 24 3d 22 22 8c 20 43 24 3d 43 |....in$="". C$=C| 00000150 24 20 8b 20 43 24 3d 69 6e 24 0d 00 b4 05 e1 0d |$ . C$=in$......| 00000160 00 be 0b dd 20 f2 6d 65 6e 75 0d 00 c8 0f ee 20 |.... .menu..... | 00000170 85 20 f2 72 65 70 6f 72 74 0d 00 d2 05 db 0d 00 |. .report.......| 00000180 d7 0b 2a 46 58 32 31 2c 30 0d 00 dc 2a f1 8a 32 |..*FX21,0...*..2| 00000190 2c 32 29 bd 31 33 31 22 43 41 53 53 45 54 54 45 |,2).131"CASSETTE| 000001a0 20 49 4e 44 45 58 20 4c 41 42 45 4c 20 4d 45 4e | INDEX LABEL MEN| 000001b0 55 22 3b 0d 00 e6 14 e7 43 24 3c 3e 22 22 8c 20 |U";.....C$<>"". | 000001c0 f1 22 20 46 4f 52 22 0d 00 f0 10 f1 8a 31 34 29 |." FOR"......14)| 000001d0 3b bd 31 33 31 43 24 0d 00 fa 22 f1 8a 33 2c 35 |;.131C$..."..3,5| 000001e0 29 3b bd 31 33 33 22 53 22 3b bd 31 33 35 22 61 |);.133"S";.135"a| 000001f0 76 65 20 64 61 74 61 22 27 0d 01 04 20 f1 8a 33 |ve data"'... ..3| 00000200 29 3b bd 31 33 33 22 4c 22 3b bd 31 33 35 22 6f |);.133"L";.135"o| 00000210 61 64 20 64 61 74 61 22 27 0d 01 0e 2c f1 8a 33 |ad data"'...,..3| 00000220 29 3b bd 31 33 33 22 50 22 3b bd 31 33 35 22 72 |);.133"P";.135"r| 00000230 69 6e 74 20 66 75 6c 6c 20 69 6e 64 65 78 20 63 |int full index c| 00000240 61 72 64 22 27 0d 01 18 2c f1 8a 33 29 3b bd 31 |ard"'...,..3);.1| 00000250 33 33 22 54 22 3b bd 31 33 35 22 69 74 6c 65 20 |33"T";.135"itle | 00000260 6f 6e 6c 79 20 74 6f 20 70 72 69 6e 74 65 72 22 |only to printer"| 00000270 27 0d 01 22 28 f1 8a 33 29 3b bd 31 33 33 22 45 |'.."(..3);.133"E| 00000280 22 3b bd 31 33 35 22 6e 74 65 72 20 6e 65 77 20 |";.135"nter new | 00000290 64 65 74 61 69 6c 73 22 27 0d 01 2c 32 f1 8a 33 |details"'..,2..3| 000002a0 29 3b bd 31 33 33 22 56 22 3b bd 31 33 35 22 69 |);.133"V";.135"i| 000002b0 65 77 2f 41 6d 65 6e 64 20 65 78 69 73 74 69 6e |ew/Amend existin| 000002c0 67 20 64 65 74 61 69 6c 73 22 27 0d 01 31 24 f1 |g details"'..1$.| 000002d0 8a 33 29 3b bd 31 33 33 22 51 22 3b bd 31 33 35 |.3);.133"Q";.135| 000002e0 22 75 69 74 20 70 72 6f 67 72 61 6d 22 27 27 0d |"uit program"''.| 000002f0 01 36 23 f1 8a 32 29 bd 31 33 30 22 50 4c 45 41 |.6#..2).130"PLEA| 00000300 53 45 20 53 45 4c 45 43 54 20 4f 50 54 49 4f 4e |SE SELECT OPTION| 00000310 90 22 0d 01 40 08 78 24 3d be 0d 01 4a 3c e7 78 |."..@.x$=...J<.x| 00000320 24 3d 22 45 22 20 84 20 78 24 3d 22 65 22 8c 20 |$="E" . x$="e". | 00000330 f2 63 61 73 73 3a f2 73 69 64 65 3a f2 74 69 74 |.cass:.side:.tit| 00000340 6c 65 3a f2 74 72 61 63 6b 3a f2 73 63 72 65 65 |le:.track:.scree| 00000350 6e 70 72 69 6e 74 0d 01 54 2e e7 78 24 3d 22 56 |nprint..T..x$="V| 00000360 22 20 84 20 78 24 3d 22 76 22 8c 20 f2 63 61 73 |" . x$="v". .cas| 00000370 73 3a f2 73 69 64 65 3a f2 73 63 72 65 65 6e 70 |s:.side:.screenp| 00000380 72 69 6e 74 0d 01 5e 1c e7 78 24 3d 22 50 22 20 |rint..^..x$="P" | 00000390 84 20 78 24 3d 22 70 22 20 f2 70 70 72 69 6e 74 |. x$="p" .pprint| 000003a0 0d 01 68 1c e7 78 24 3d 22 54 22 20 84 20 78 24 |..h..x$="T" . x$| 000003b0 3d 22 74 22 20 f2 74 70 72 69 6e 74 0d 01 72 1c |="t" .tprint..r.| 000003c0 e7 78 24 3d 22 53 22 20 84 20 78 24 3d 22 73 22 |.x$="S" . x$="s"| 000003d0 20 8c 20 f2 73 61 76 65 0d 01 7c 1c e7 78 24 3d | . .save..|..x$=| 000003e0 22 4c 22 20 84 20 78 24 3d 22 6c 22 20 8c 20 f2 |"L" . x$="l" . .| 000003f0 6c 6f 61 64 0d 01 81 1c e7 78 24 3d 22 51 22 20 |load.....x$="Q" | 00000400 84 20 78 24 3d 22 71 22 20 8c 20 f2 71 75 69 74 |. x$="q" . .quit| 00000410 0d 01 86 09 e5 8d 64 52 40 0d 01 90 05 e1 0d 01 |......dR@.......| 00000420 9a 0b dd 20 f2 73 69 64 65 0d 01 a4 05 db 0d 01 |... .side.......| 00000430 ae 61 f1 8a 33 2c 35 29 22 45 6e 74 65 72 2f 56 |.a..3,5)"Enter/V| 00000440 69 65 77 20 69 6e 66 6f 72 6d 61 74 69 6f 6e 20 |iew information | 00000450 66 6f 72 22 27 27 8a 31 35 29 22 53 49 44 45 20 |for"''.15)"SIDE | 00000460 31 20 6f 72 20 53 49 44 45 20 32 20 3f 22 8a 35 |1 or SIDE 2 ?".5| 00000470 2c 32 33 29 22 5d 50 72 65 73 73 20 3c 52 45 54 |,23)"]Press <RET| 00000480 55 52 4e 3e 20 74 6f 20 61 62 6f 72 74 5b 22 0d |URN> to abort[".| 00000490 01 b8 08 78 24 3d be 0d 01 c2 0c 73 69 64 65 3d |...x$=.....side=| 000004a0 bb 78 24 0d 01 cc 25 e7 73 69 64 65 3c 3e 30 80 |.x$...%.side<>0.| 000004b0 20 73 69 64 65 3c 3e 31 80 20 73 69 64 65 3c 3e | side<>1. side<>| 000004c0 32 20 8c 20 8d 74 6e 41 0d 01 d6 13 e7 73 69 64 |2 . .tnA.....sid| 000004d0 65 3d 30 20 8c 20 f2 6d 65 6e 75 0d 01 e0 1c e7 |e=0 . .menu.....| 000004e0 73 69 64 65 3d 31 20 8c 20 62 65 67 3d 31 20 8b |side=1 . beg=1 .| 000004f0 20 62 65 67 3d 32 30 0d 01 ea 05 e1 0d 01 f4 0c | beg=20.........| 00000500 dd 20 f2 74 69 74 6c 65 0d 01 fe 08 74 69 3d 31 |. .title....ti=1| 00000510 0d 02 08 05 db 0d 02 12 30 69 6e 70 75 74 24 3d |........0input$=| 00000520 22 6e 65 77 20 54 69 74 6c 65 20 28 6d 61 78 20 |"new Title (max | 00000530 32 36 20 63 68 61 72 73 29 22 3a f2 69 6e 70 75 |26 chars)":.inpu| 00000540 74 28 32 36 29 0d 02 1c 39 e7 69 6e 24 3d 22 22 |t(26)...9.in$=""| 00000550 8c 20 74 69 74 6c 65 24 28 73 69 64 65 29 3d 74 |. title$(side)=t| 00000560 69 74 6c 65 24 28 73 69 64 65 29 20 8b 20 74 69 |itle$(side) . ti| 00000570 74 6c 65 24 28 73 69 64 65 29 3d 69 6e 24 0d 02 |tle$(side)=in$..| 00000580 26 43 69 6e 70 75 74 24 3d 22 44 65 74 61 69 6c |&Cinput$="Detail| 00000590 73 20 66 6f 72 20 53 49 44 45 20 22 2b c3 28 73 |s for SIDE "+.(s| 000005a0 69 64 65 29 2b 22 20 28 6d 61 78 20 36 35 20 63 |ide)+" (max 65 c| 000005b0 68 61 72 73 29 22 3a f2 69 6e 70 75 74 28 36 35 |hars)":.input(65| 000005c0 29 0d 02 30 3c e7 69 6e 24 3d 22 22 8c 20 64 65 |)..0<.in$="". de| 000005d0 74 61 69 6c 24 28 73 69 64 65 29 3d 64 65 74 61 |tail$(side)=deta| 000005e0 69 6c 24 28 73 69 64 65 29 20 8b 20 64 65 74 61 |il$(side) . deta| 000005f0 69 6c 24 28 73 69 64 65 29 3d 69 6e 24 0d 02 3a |il$(side)=in$..:| 00000600 3f 69 6e 70 75 74 24 3d 22 44 4f 4c 42 59 20 66 |?input$="DOLBY f| 00000610 6f 72 20 53 49 44 45 20 22 2b c3 28 73 69 64 65 |or SIDE "+.(side| 00000620 29 2b 22 20 28 6d 61 78 20 33 20 63 68 61 72 73 |)+" (max 3 chars| 00000630 29 22 3a f2 69 6e 70 75 74 28 33 29 0d 02 44 39 |)":.input(3)..D9| 00000640 e7 69 6e 24 3d 22 22 8c 20 64 6f 6c 62 79 24 28 |.in$="". dolby$(| 00000650 73 69 64 65 29 3d 64 6f 6c 62 79 24 28 73 69 64 |side)=dolby$(sid| 00000660 65 29 20 8b 20 64 6f 6c 62 79 24 28 73 69 64 65 |e) . dolby$(side| 00000670 29 3d 69 6e 24 0d 02 4e 05 e1 0d 02 58 0c dd 20 |)=in$..N....X.. | 00000680 f2 74 72 61 63 6b 0d 02 62 17 e3 74 72 61 63 6b |.track..b..track| 00000690 3d 62 65 67 20 b8 20 62 65 67 2b 31 38 0d 02 6c |=beg . beg+18..l| 000006a0 2b 69 6e 70 75 74 24 3d 22 54 65 78 74 20 28 6d |+input$="Text (m| 000006b0 61 78 20 33 31 20 63 68 61 72 73 29 22 3a f2 69 |ax 31 chars)":.i| 000006c0 6e 70 75 74 28 33 31 29 0d 02 76 31 e7 69 6e 24 |nput(31)..v1.in$| 000006d0 3d 22 22 20 8c 20 41 24 28 74 72 61 63 6b 29 3d |="" . A$(track)=| 000006e0 41 24 28 74 72 61 63 6b 29 20 8b 20 41 24 28 74 |A$(track) . A$(t| 000006f0 72 61 63 6b 29 3d 69 6e 24 0d 02 80 05 ed 0d 02 |rack)=in$.......| 00000700 8a 05 e1 0d 02 94 14 dd 20 f2 69 6e 70 75 74 28 |........ .input(| 00000710 6c 65 6e 67 74 68 29 0d 02 9e 0a 69 6e 24 3d 22 |length)....in$="| 00000720 22 0d 02 a8 1d e7 73 69 64 65 3d 31 20 8c 20 61 |".....side=1 . a| 00000730 73 63 3d 36 34 20 8b 20 61 73 63 3d 34 35 0d 02 |sc=64 . asc=45..| 00000740 b2 05 db 0d 02 bc 49 e7 6c 65 6e 67 74 68 3d 32 |......I.length=2| 00000750 36 20 8c 20 f1 20 8a 30 2c 35 29 22 53 49 44 45 |6 . . .0,5)"SIDE| 00000760 20 22 3b 73 69 64 65 3b 22 20 65 78 69 73 74 69 | ";side;" existi| 00000770 6e 67 20 54 69 74 6c 65 20 69 73 22 27 27 74 69 |ng Title is"''ti| 00000780 74 6c 65 24 28 73 69 64 65 29 27 27 0d 02 c6 4d |tle$(side)''...M| 00000790 e7 6c 65 6e 67 74 68 3d 36 35 20 8c 20 f1 20 8a |.length=65 . . .| 000007a0 30 2c 35 29 22 53 49 44 45 20 22 3b 73 69 64 65 |0,5)"SIDE ";side| 000007b0 3b 22 20 65 78 69 73 74 69 6e 67 20 44 65 74 61 |;" existing Deta| 000007c0 69 6c 73 20 61 72 65 22 27 27 64 65 74 61 69 6c |ils are"''detail| 000007d0 24 28 73 69 64 65 29 27 27 0d 02 d0 5c e7 6c 65 |$(side)''...\.le| 000007e0 6e 67 74 68 3d 33 31 20 8c 20 f1 20 8a 30 2c 35 |ngth=31 . . .0,5| 000007f0 29 22 53 49 44 45 20 22 3b 73 69 64 65 3b 22 20 |)"SIDE ";side;" | 00000800 54 52 41 43 4b 20 22 3b bd 28 74 72 61 63 6b 2b |TRACK ";.(track+| 00000810 61 73 63 29 3b 22 20 65 78 69 73 74 69 6e 67 20 |asc);" existing | 00000820 54 65 78 74 20 69 73 22 27 27 41 24 28 74 72 61 |Text is"''A$(tra| 00000830 63 6b 29 27 27 0d 02 da 4f e7 6c 65 6e 67 74 68 |ck)''...O.length| 00000840 3d 33 20 8c 20 f1 20 8a 30 2c 35 29 22 53 49 44 |=3 . . .0,5)"SID| 00000850 45 20 22 3b 73 69 64 65 3b 22 20 65 78 69 73 74 |E ";side;" exist| 00000860 69 6e 67 20 44 4f 4c 42 59 20 64 65 74 61 69 6c |ing DOLBY detail| 00000870 20 69 73 22 27 27 64 6f 6c 62 79 24 28 73 69 64 | is"''dolby$(sid| 00000880 65 29 27 27 0d 02 e4 30 e7 6c 65 6e 67 74 68 3d |e)''...0.length=| 00000890 31 31 20 8c 20 f1 20 8a 30 2c 35 29 22 45 78 69 |11 . . .0,5)"Exi| 000008a0 73 74 69 6e 67 20 74 79 70 65 20 69 73 22 27 27 |sting type is"''| 000008b0 43 24 27 27 0d 02 ee 2f f1 22 45 6e 74 65 72 20 |C$''.../."Enter | 000008c0 22 3b 69 6e 70 75 74 24 27 27 22 6f 72 20 70 72 |";input$''"or pr| 000008d0 65 73 73 20 3c 52 45 54 55 52 4e 3e 20 69 66 20 |ess <RETURN> if | 000008e0 4f 4b 22 0d 02 f8 08 7a 24 3d be 0d 03 02 11 e7 |OK"....z$=......| 000008f0 20 97 20 7a 24 3d 31 33 20 8c 20 e1 0d 03 0c 2e | . z$=13 . .....| 00000900 e7 20 97 20 7a 24 3d 31 32 37 20 8c 20 69 6e 24 |. . z$=127 . in$| 00000910 3d c0 69 6e 24 2c a9 69 6e 24 2d 31 29 20 8b 20 |=.in$,.in$-1) . | 00000920 69 6e 24 3d 69 6e 24 2b 7a 24 0d 03 16 28 e7 20 |in$=in$+z$...(. | 00000930 a9 20 69 6e 24 3e 6c 65 6e 67 74 68 20 8c 20 69 |. in$>length . i| 00000940 6e 24 3d c0 69 6e 24 2c 6c 65 6e 67 74 68 29 3a |n$=.in$,length):| 00000950 ef 37 0d 03 20 13 f1 8a 30 2c 31 36 29 3b 69 6e |.7.. ...0,16);in| 00000960 24 3b 22 20 22 0d 03 2a 09 e5 8d 64 78 42 0d 03 |$;" "..*...dxB..| 00000970 34 05 e1 0d 03 3e 12 dd 20 f2 73 63 72 65 65 6e |4....>.. .screen| 00000980 70 72 69 6e 74 0d 03 48 05 db 0d 03 52 58 f1 20 |print..H....RX. | 00000990 74 69 74 6c 65 24 28 73 69 64 65 29 3b 8a 33 31 |title$(side);.31| 000009a0 2c 30 29 3b 22 44 4f 4c 42 59 20 22 3b 64 6f 6c |,0);"DOLBY ";dol| 000009b0 62 79 24 28 73 69 64 65 29 3b 8a 30 2c 31 29 3b |by$(side);.0,1);| 000009c0 64 65 74 61 69 6c 24 28 73 69 64 65 29 3b 8a 33 |detail$(side);.3| 000009d0 31 2c 32 29 3b 22 53 49 44 45 20 22 3b 73 69 64 |1,2);"SIDE ";sid| 000009e0 65 27 0d 03 5c 1c e7 73 69 64 65 3d 31 20 8c 20 |e'..\..side=1 . | 000009f0 62 65 67 3d 31 20 8b 20 62 65 67 3d 32 30 0d 03 |beg=1 . beg=20..| 00000a00 66 1d e7 73 69 64 65 3d 31 20 8c 20 61 73 63 3d |f..side=1 . asc=| 00000a10 36 34 20 8b 20 61 73 63 3d 34 35 0d 03 70 17 e3 |64 . asc=45..p..| 00000a20 74 72 61 63 6b 3d 62 65 67 20 b8 20 62 65 67 2b |track=beg . beg+| 00000a30 31 38 0d 03 7a 0f ef 74 72 61 63 6b 2b 61 73 63 |18..z..track+asc| 00000a40 3b 0d 03 84 14 f1 22 20 20 22 3b 41 24 28 74 72 |;....." ";A$(tr| 00000a50 61 63 6b 29 20 0d 03 8e 05 ed 0d 03 98 0a f2 63 |ack) ..........c| 00000a60 68 65 63 6b 0d 03 a2 05 e1 0d 03 ac 0c dd 20 f2 |heck.......... .| 00000a70 63 68 65 63 6b 0d 03 b6 08 74 69 3d 30 0d 03 c0 |check....ti=0...| 00000a80 3e f1 22 45 6e 74 65 72 20 74 72 61 63 6b 20 74 |>."Enter track t| 00000a90 6f 20 61 6d 65 6e 64 2d 3c 54 3e 20 66 6f 72 20 |o amend-<T> for | 00000aa0 54 69 74 6c 65 22 27 22 6f 72 20 3c 52 45 54 55 |Title"'"or <RETU| 00000ab0 52 4e 3e 20 69 66 20 4f 4b 22 3b 0d 03 ca 07 78 |RN> if OK";....x| 00000ac0 3d a5 0d 03 d4 1a e7 78 3d 38 34 20 84 20 78 3d |=......x=84 . x=| 00000ad0 31 31 36 20 8c 20 f2 74 69 74 6c 65 0d 03 de 12 |116 . .title....| 00000ae0 e7 78 3e 39 30 20 8c 20 78 3d 78 2d 33 32 0d 03 |.x>90 . x=x-32..| 00000af0 e8 0d e7 78 3d 31 33 20 8c 20 e1 0d 03 f2 25 e7 |...x=13 . ....%.| 00000b00 73 69 64 65 3d 31 20 8c 20 74 72 61 63 6b 3d 78 |side=1 . track=x| 00000b10 2d 36 34 20 8b 20 74 72 61 63 6b 3d 78 2d 34 35 |-64 . track=x-45| 00000b20 0d 03 fc 23 e7 74 72 61 63 6b 3c 31 20 84 20 74 |...#.track<1 . t| 00000b30 72 61 63 6b 3e 73 69 64 65 2a 31 39 20 8c 20 8d |rack>side*19 . .| 00000b40 54 64 44 0d 04 06 10 e7 74 69 3d 31 20 8c 20 8d |TdD.....ti=1 . .| 00000b50 54 64 44 0d 04 10 2b 69 6e 70 75 74 24 3d 22 54 |TdD...+input$="T| 00000b60 65 78 74 20 28 6d 61 78 20 33 31 20 63 68 61 72 |ext (max 31 char| 00000b70 73 29 22 3a f2 69 6e 70 75 74 28 33 31 29 0d 04 |s)":.input(31)..| 00000b80 1a 31 e7 69 6e 24 3d 22 22 20 8c 20 41 24 28 74 |.1.in$="" . A$(t| 00000b90 72 61 63 6b 29 3d 41 24 28 74 72 61 63 6b 29 20 |rack)=A$(track) | 00000ba0 8b 20 41 24 28 74 72 61 63 6b 29 3d 69 6e 24 0d |. A$(track)=in$.| 00000bb0 04 24 10 f2 73 63 72 65 65 6e 70 72 69 6e 74 0d |.$..screenprint.| 00000bc0 04 2e 05 e1 0d 04 38 0a dd 20 f2 70 61 64 0d 04 |......8.. .pad..| 00000bd0 42 0f e3 74 72 61 63 6b 3d 31 b8 33 38 0d 04 4c |B..track=1.38..L| 00000be0 2b 41 24 28 74 72 61 63 6b 29 3d 41 24 28 74 72 |+A$(track)=A$(tr| 00000bf0 61 63 6b 29 2b c4 33 32 2d a9 41 24 28 74 72 61 |ack)+.32-.A$(tra| 00000c00 63 6b 29 2c 22 20 22 29 0d 04 56 05 ed 0d 04 60 |ck)," ")..V....`| 00000c10 0d e3 73 69 64 65 3d 31 b8 32 0d 04 6a 34 74 69 |..side=1.2..j4ti| 00000c20 74 6c 65 24 28 73 69 64 65 29 3d 74 69 74 6c 65 |tle$(side)=title| 00000c30 24 28 73 69 64 65 29 2b c4 32 36 2d a9 74 69 74 |$(side)+.26-.tit| 00000c40 6c 65 24 28 73 69 64 65 29 2c 22 20 22 29 0d 04 |le$(side)," ")..| 00000c50 74 37 64 65 74 61 69 6c 24 28 73 69 64 65 29 3d |t7detail$(side)=| 00000c60 64 65 74 61 69 6c 24 28 73 69 64 65 29 2b c4 36 |detail$(side)+.6| 00000c70 35 2d a9 64 65 74 61 69 6c 24 28 73 69 64 65 29 |5-.detail$(side)| 00000c80 2c 22 20 22 29 0d 04 7e 05 ed 0d 04 88 05 e1 0d |," ")..~........| 00000c90 04 92 0d dd 20 f2 70 70 72 69 6e 74 0d 04 94 5e |.... .pprint...^| 00000ca0 f2 64 61 74 61 63 68 65 63 6b 3a e7 64 61 74 61 |.datacheck:.data| 00000cb0 6c 65 6e 3d 30 20 ef 37 3a f1 8a 32 2c 32 30 29 |len=0 .7:..2,20)| 00000cc0 3b bd 31 32 39 22 59 6f 75 20 68 61 76 65 20 6e |;.129"You have n| 00000cd0 6f 74 20 65 6e 74 65 72 65 64 20 61 6e 79 20 64 |ot entered any d| 00000ce0 61 74 61 20 79 65 74 21 22 3a e3 77 61 69 74 3d |ata yet!":.wait=| 00000cf0 31 b8 36 30 30 30 3a ed 3a e1 0d 04 96 18 f2 6f |1.6000:.:......o| 00000d00 6e 6c 69 6e 65 3a e7 20 62 75 66 66 65 72 3d a3 |nline:. buffer=.| 00000d10 20 e1 0d 04 98 34 f1 8a 32 2c 32 30 29 3b bd 31 | ....4..2,20);.1| 00000d20 32 39 22 50 52 49 4e 54 49 4e 47 20 49 4e 20 50 |29"PRINTING IN P| 00000d30 52 4f 47 52 45 53 53 20 2d 20 50 4c 45 41 53 45 |ROGRESS - PLEASE| 00000d40 20 57 41 49 54 22 0d 04 9c 08 f2 70 61 64 0d 04 | WAIT".....pad..| 00000d50 a6 0b 2a 46 58 33 2c 31 30 0d 04 b0 1d ef 32 37 |..*FX3,10.....27| 00000d60 2c 36 34 3a f4 20 52 65 73 65 74 20 74 6f 20 64 |,64:. Reset to d| 00000d70 65 66 61 75 6c 74 0d 04 ba 21 ef 32 37 2c 35 31 |efault...!.27,51| 00000d80 2c 31 34 3a f4 20 31 34 2f 32 31 36 20 6c 69 6e |,14:. 14/216 lin| 00000d90 65 20 73 70 61 63 65 0d 04 c4 1c ef 32 37 2c 31 |e space.....27,1| 00000da0 35 3a f4 20 43 6f 6e 64 65 6e 73 65 64 20 70 72 |5:. Condensed pr| 00000db0 69 6e 74 0d 04 ce 1b ef 32 37 2c 38 35 2c 31 3a |int.....27,85,1:| 00000dc0 f4 20 75 6e 69 64 69 72 20 70 72 69 6e 74 0d 04 |. unidir print..| 00000dd0 d8 41 f1 22 53 49 44 45 20 31 20 20 20 44 4f 4c |.A."SIDE 1 DOL| 00000de0 42 59 20 22 3b 64 6f 6c 62 79 24 28 31 29 3b 8a |BY ";dolby$(1);.| 00000df0 33 34 29 3b 22 53 49 44 45 20 32 20 20 20 44 4f |34);"SIDE 2 DO| 00000e00 4c 42 59 20 22 3b 64 6f 6c 62 79 24 28 32 29 0d |LBY ";dolby$(2).| 00000e10 04 e2 21 ef 32 37 2c 35 31 2c 31 38 3a f4 20 31 |..!.27,51,18:. 1| 00000e20 38 2f 32 31 36 20 6c 69 6e 65 20 73 70 61 63 65 |8/216 line space| 00000e30 0d 04 ec 14 f1 20 c4 36 35 2c 22 2d 22 29 3b 22 |..... .65,"-");"| 00000e40 20 20 7c 22 0d 04 f6 21 ef 32 37 2c 35 31 2c 32 | |"...!.27,51,2| 00000e50 37 3a f4 20 32 37 2f 32 31 36 20 6c 69 6e 65 20 |7:. 27/216 line | 00000e60 73 70 61 63 65 0d 05 00 0f e3 74 72 61 63 6b 3d |space.....track=| 00000e70 31 b8 31 39 0d 05 0a 26 f1 20 41 24 28 74 72 61 |1.19...&. A$(tra| 00000e80 63 6b 29 3b 22 7c 20 22 3b 41 24 28 74 72 61 63 |ck);"| ";A$(trac| 00000e90 6b 2b 31 39 29 3b 22 20 7c 22 0d 05 14 05 ed 0d |k+19);" |"......| 00000ea0 05 1e 14 f1 20 c4 36 35 2c 22 2d 22 29 3b 22 20 |.... .65,"-");" | 00000eb0 20 7c 22 0d 05 28 10 f1 22 53 49 44 45 20 31 3a | |"..(.."SIDE 1:| 00000ec0 20 22 3b 0d 05 32 32 ef 32 37 2c 31 34 3a f4 20 | ";..22.27,14:. | 00000ed0 45 6e 6c 61 72 67 65 64 20 70 72 69 6e 74 20 77 |Enlarged print w| 00000ee0 69 74 68 20 73 65 6c 66 20 63 61 6e 63 65 6c 6c |ith self cancell| 00000ef0 61 74 69 6f 6e 0d 05 3c 1a ef 32 37 2c 37 31 3a |ation..<..27,71:| 00000f00 f4 20 44 6f 75 62 6c 65 20 73 74 72 69 6b 65 0d |. Double strike.| 00000f10 05 46 0e f1 74 69 74 6c 65 24 28 31 29 0d 05 50 |.F..title$(1)..P| 00000f20 20 ef 31 38 3a f4 20 43 61 6e 63 65 6c 20 43 6f | .18:. Cancel Co| 00000f30 6e 64 65 6e 73 65 64 20 70 72 69 6e 74 0d 05 5a |ndensed print..Z| 00000f40 21 ef 32 37 2c 37 32 3a f4 20 43 61 6e 63 65 6c |!.27,72:. Cancel| 00000f50 20 44 6f 75 62 6c 65 20 73 74 72 69 6b 65 0d 05 | Double strike..| 00000f60 64 12 f1 20 8a 33 38 2d a9 20 43 24 29 3b 43 24 |d.. .38-. C$);C$| 00000f70 0d 05 6e 1c ef 32 37 2c 31 35 3a f4 20 43 6f 6e |..n..27,15:. Con| 00000f80 64 65 6e 73 65 64 20 70 72 69 6e 74 0d 05 78 10 |densed print..x.| 00000f90 f1 22 53 49 44 45 20 32 3a 20 22 3b 0d 05 82 32 |."SIDE 2: ";...2| 00000fa0 ef 32 37 2c 31 34 3a f4 20 45 6e 6c 61 72 67 65 |.27,14:. Enlarge| 00000fb0 64 20 70 72 69 6e 74 20 77 69 74 68 20 73 65 6c |d print with sel| 00000fc0 66 20 63 61 6e 63 65 6c 6c 61 74 69 6f 6e 0d 05 |f cancellation..| 00000fd0 8c 1a ef 32 37 2c 37 31 3a f4 20 44 6f 75 62 6c |...27,71:. Doubl| 00000fe0 65 20 73 74 72 69 6b 65 0d 05 96 0e f1 74 69 74 |e strike.....tit| 00000ff0 6c 65 24 28 32 29 0d 05 a0 21 ef 32 37 2c 37 32 |le$(2)...!.27,72| 00001000 3a f4 20 43 61 6e 63 65 6c 20 44 6f 75 62 6c 65 |:. Cancel Double| 00001010 20 73 74 72 69 6b 65 0d 05 aa 14 f1 20 c4 36 35 | strike..... .65| 00001020 2c 22 2d 22 29 3b 22 20 20 7c 22 0d 05 b4 4a f1 |,"-");" |"...J.| 00001030 22 53 49 44 45 20 31 3a 22 3b 8a 36 37 29 22 7c |"SIDE 1:";.67)"|| 00001040 22 27 64 65 74 61 69 6c 24 28 31 29 3b 22 20 20 |"'detail$(1);" | 00001050 7c 22 27 22 53 49 44 45 20 32 3a 22 3b 8a 36 37 ||"'"SIDE 2:";.67| 00001060 29 22 7c 22 27 64 65 74 61 69 6c 24 28 32 29 3b |)"|"'detail$(2);| 00001070 22 20 20 7c 22 0d 05 be 0d f1 8a 36 37 29 3b 22 |" |"......67);"| 00001080 7c 22 0d 05 c8 1e e3 73 74 3d 31 b8 33 3a f1 20 ||".....st=1.3:. | 00001090 c4 36 35 2c 22 2a 22 29 3b 22 20 20 7c 22 3a ed |.65,"*");" |":.| 000010a0 0d 05 d2 05 f1 0d 05 dc 0a 2a 46 58 33 2c 30 0d |.........*FX3,0.| 000010b0 05 e6 05 e1 0d 05 f0 0b dd 20 f2 73 61 76 65 0d |......... .save.| 000010c0 05 fa 5e f2 64 61 74 61 63 68 65 63 6b 3a e7 64 |..^.datacheck:.d| 000010d0 61 74 61 6c 65 6e 3d 30 20 ef 37 3a f1 8a 32 2c |atalen=0 .7:..2,| 000010e0 32 30 29 3b bd 31 32 39 22 59 6f 75 20 68 61 76 |20);.129"You hav| 000010f0 65 20 6e 6f 74 20 65 6e 74 65 72 65 64 20 61 6e |e not entered an| 00001100 79 20 64 61 74 61 20 79 65 74 21 22 3a e3 77 61 |y data yet!":.wa| 00001110 69 74 3d 31 b8 36 30 30 30 3a ed 3a e1 0d 06 04 |it=1.6000:.:....| 00001120 0f ee 20 85 20 f2 72 65 70 6f 72 74 0d 06 0e 23 |.. . .report...#| 00001130 e8 22 45 4e 54 45 52 20 46 49 4c 45 20 4e 41 4d |."ENTER FILE NAM| 00001140 45 20 54 4f 20 53 41 56 45 20 3a 20 22 78 24 0d |E TO SAVE : "x$.| 00001150 06 18 0d 63 68 25 3d ae 28 78 24 29 0d 06 22 0b |...ch%=.(x$)..".| 00001160 e3 78 3d 31 b8 33 38 0d 06 2c 0f f1 23 63 68 25 |.x=1.38..,..#ch%| 00001170 2c 41 24 28 78 29 0d 06 36 05 ed 0d 06 40 0a e3 |,A$(x)..6....@..| 00001180 78 3d 31 b8 32 0d 06 4a 28 f1 23 63 68 25 2c 74 |x=1.2..J(.#ch%,t| 00001190 69 74 6c 65 24 28 78 29 2c 64 65 74 61 69 6c 24 |itle$(x),detail$| 000011a0 28 78 29 2c 64 6f 6c 62 79 24 28 78 29 0d 06 54 |(x),dolby$(x)..T| 000011b0 05 ed 0d 06 5e 0c f1 23 63 68 25 2c 43 24 0d 06 |....^..#ch%,C$..| 000011c0 68 09 d9 23 63 68 25 0d 06 72 05 e1 0d 06 7c 0b |h..#ch%..r....|.| 000011d0 dd 20 f2 6c 6f 61 64 0d 06 86 0f ee 20 85 20 f2 |. .load..... . .| 000011e0 72 65 70 6f 72 74 0d 06 90 23 e8 22 45 4e 54 45 |report...#."ENTE| 000011f0 52 20 46 49 4c 45 20 4e 41 4d 45 20 54 4f 20 4c |R FILE NAME TO L| 00001200 4f 41 44 20 3a 20 22 78 24 0d 06 9a 0d 63 68 25 |OAD : "x$....ch%| 00001210 3d 8e 28 78 24 29 0d 06 a4 0b e3 78 3d 31 b8 33 |=.(x$).....x=1.3| 00001220 38 0d 06 ae 0f e8 23 63 68 25 2c 41 24 28 78 29 |8.....#ch%,A$(x)| 00001230 0d 06 b8 05 ed 0d 06 c2 0a e3 78 3d 31 b8 32 0d |..........x=1.2.| 00001240 06 cc 28 e8 23 63 68 25 2c 74 69 74 6c 65 24 28 |..(.#ch%,title$(| 00001250 78 29 2c 64 65 74 61 69 6c 24 28 78 29 2c 64 6f |x),detail$(x),do| 00001260 6c 62 79 24 28 78 29 0d 06 d6 05 ed 0d 06 e0 0c |lby$(x).........| 00001270 e8 23 63 68 25 2c 43 24 0d 06 ea 09 d9 23 63 68 |.#ch%,C$.....#ch| 00001280 25 0d 06 f4 05 e1 0d 06 fe 0d dd 20 f2 72 65 70 |%.......... .rep| 00001290 6f 72 74 0d 07 08 09 ee 20 85 20 87 0d 07 12 0e |ort..... . .....| 000012a0 d9 23 30 3a 2a 46 58 33 2c 30 0d 07 1c 05 f6 0d |.#0:*FX3,0......| 000012b0 07 26 31 f1 27 22 45 72 72 6f 72 20 63 6f 64 65 |.&1.'"Error code| 000012c0 20 6e 75 6d 62 65 72 20 22 3b 9f 3b 22 20 61 74 | number ";.;" at| 000012d0 20 4c 69 6e 65 20 6e 75 6d 62 65 72 20 22 3b 9e | Line number ";.| 000012e0 0d 07 30 37 f1 22 50 52 45 53 53 20 3c 45 53 43 |..07."PRESS <ESC| 000012f0 3e 20 54 4f 20 53 54 4f 50 20 50 52 4f 47 52 41 |> TO STOP PROGRA| 00001300 4d 22 27 22 50 52 45 53 53 20 3c 4d 3e 20 46 4f |M"'"PRESS <M> FO| 00001310 52 20 4d 45 4e 55 22 0d 07 3a 08 78 24 3d be 0d |R MENU"..:.x$=..| 00001320 07 44 14 e7 20 78 24 3d 22 4d 22 20 8c 20 f2 6d |.D.. x$="M" . .m| 00001330 65 6e 75 0d 07 4e 09 e5 8d 54 5c 47 0d 07 58 05 |enu..N...T\G..X.| 00001340 e1 0d 07 62 0d dd 20 f2 74 70 72 69 6e 74 0d 07 |...b.. .tprint..| 00001350 64 84 64 61 74 61 6c 65 6e 3d 30 3a e3 5a 25 3d |d.datalen=0:.Z%=| 00001360 31 b8 32 3a 64 61 74 61 6c 65 6e 3d 64 61 74 61 |1.2:datalen=data| 00001370 6c 65 6e 2b a9 28 74 69 74 6c 65 24 28 5a 25 29 |len+.(title$(Z%)| 00001380 29 3a ed 3a e7 64 61 74 61 6c 65 6e 3d 30 20 ef |):.:.datalen=0 .| 00001390 37 3a f1 8a 32 2c 32 30 29 3b bd 31 32 39 22 59 |7:..2,20);.129"Y| 000013a0 6f 75 20 68 61 76 65 20 6e 6f 74 20 65 6e 74 65 |ou have not ente| 000013b0 72 65 64 20 61 20 74 69 74 6c 65 20 79 65 74 21 |red a title yet!| 000013c0 22 3a e3 77 61 69 74 3d 31 b8 36 30 30 30 3a ed |":.wait=1.6000:.| 000013d0 3a e1 0d 07 66 18 f2 6f 6e 6c 69 6e 65 3a e7 20 |:...f..online:. | 000013e0 62 75 66 66 65 72 3d a3 20 e1 0d 07 68 43 f1 8a |buffer=. ...hC..| 000013f0 32 2c 32 30 29 3b bd 31 32 39 22 50 52 49 4e 54 |2,20);.129"PRINT| 00001400 49 4e 47 20 49 4e 20 50 52 4f 47 52 45 53 53 20 |ING IN PROGRESS | 00001410 2d 20 50 4c 45 41 53 45 20 57 41 49 54 22 3a e3 |- PLEASE WAIT":.| 00001420 77 61 69 74 3d 31 b8 31 30 30 30 3a ed 0d 07 6c |wait=1.1000:...l| 00001430 0b 2a 46 58 33 2c 31 30 0d 07 76 1d ef 32 37 2c |.*FX3,10..v..27,| 00001440 36 34 3a f4 20 52 65 73 65 74 20 74 6f 20 64 65 |64:. Reset to de| 00001450 66 61 75 6c 74 0d 07 80 1c ef 32 37 2c 31 35 3a |fault.....27,15:| 00001460 f4 20 43 6f 6e 64 65 6e 73 65 64 20 50 72 69 6e |. Condensed Prin| 00001470 74 0d 07 8a 1b ef 32 37 2c 38 35 2c 31 3a f4 20 |t.....27,85,1:. | 00001480 75 6e 69 64 69 72 20 70 72 69 6e 74 0d 07 94 20 |unidir print... | 00001490 ef 32 37 2c 35 30 3a f4 20 6c 69 6e 65 20 73 70 |.27,50:. line sp| 000014a0 61 63 65 20 31 2f 36 20 69 6e 63 68 0d 07 9e 10 |ace 1/6 inch....| 000014b0 f1 22 53 49 44 45 20 31 3a 20 22 3b 0d 07 a8 32 |."SIDE 1: ";...2| 000014c0 ef 32 37 2c 31 34 3a f4 20 45 6e 6c 61 72 67 65 |.27,14:. Enlarge| 000014d0 64 20 70 72 69 6e 74 20 77 69 74 68 20 73 65 6c |d print with sel| 000014e0 66 20 63 61 6e 63 65 6c 6c 61 74 69 6f 6e 0d 07 |f cancellation..| 000014f0 b2 1a ef 32 37 2c 37 31 3a f4 20 44 6f 75 62 6c |...27,71:. Doubl| 00001500 65 20 73 74 72 69 6b 65 0d 07 bc 0e f1 74 69 74 |e strike.....tit| 00001510 6c 65 24 28 31 29 0d 07 c6 21 ef 32 37 2c 37 32 |le$(1)...!.27,72| 00001520 3a f4 20 43 61 6e 63 65 6c 20 44 6f 75 62 6c 65 |:. Cancel Double| 00001530 20 73 74 72 69 6b 65 0d 07 d0 10 f1 22 53 49 44 | strike....."SID| 00001540 45 20 32 3a 20 22 3b 0d 07 da 32 ef 32 37 2c 31 |E 2: ";...2.27,1| 00001550 34 3a f4 20 45 6e 6c 61 72 67 65 64 20 70 72 69 |4:. Enlarged pri| 00001560 6e 74 20 77 69 74 68 20 73 65 6c 66 20 63 61 6e |nt with self can| 00001570 63 65 6c 6c 61 74 69 6f 6e 0d 07 e4 1a ef 32 37 |cellation.....27| 00001580 2c 37 31 3a f4 20 44 6f 75 62 6c 65 20 73 74 72 |,71:. Double str| 00001590 69 6b 65 0d 07 ee 0e f1 74 69 74 6c 65 24 28 32 |ike.....title$(2| 000015a0 29 0d 07 f8 21 ef 32 37 2c 37 32 3a f4 20 43 61 |)...!.27,72:. Ca| 000015b0 6e 63 65 6c 20 44 6f 75 62 6c 65 20 73 74 72 69 |ncel Double stri| 000015c0 6b 65 0d 08 02 0a 2a 46 58 33 2c 30 0d 08 0c 05 |ke....*FX3,0....| 000015d0 e1 0d 08 16 0d dd 20 f2 6f 6e 6c 69 6e 65 0d 08 |...... .online..| 000015e0 20 0b 2a 46 58 32 31 2c 33 0d 08 25 0b 2a 46 58 | .*FX21,3..%.*FX| 000015f0 33 2c 31 30 0d 08 2a 17 ef 32 2c 31 3a e3 57 25 |3,10..*..2,1:.W%| 00001600 3d 31 b8 35 30 30 3a ed 3a ef 33 0d 08 2f 0a 2a |=1.500:.:.3../.*| 00001610 46 58 33 2c 30 0d 08 34 7d e7 20 96 28 2d 34 29 |FX3,0..4}. .(-4)| 00001620 3c 3e 36 33 20 62 75 66 66 65 72 3d a3 3a ef 37 |<>63 buffer=.:.7| 00001630 3a f1 8a 32 2c 32 30 29 3b bd 31 32 39 22 50 72 |:..2,20);.129"Pr| 00001640 69 6e 74 65 72 20 69 73 20 62 75 73 79 20 6f 72 |inter is busy or| 00001650 20 6e 6f 74 20 6f 6e 20 6c 69 6e 65 22 27 8a 32 | not on line"'.2| 00001660 31 29 bd 31 32 39 22 20 2d 20 70 6c 65 61 73 65 |1).129" - please| 00001670 20 63 68 65 63 6b 2e 22 3a e3 77 61 69 74 3d 31 | check.":.wait=1| 00001680 b8 36 30 30 30 3a ed 3a 8b 20 62 75 66 66 65 72 |.6000:.:. buffer| 00001690 3d b9 0d 08 3e 0b 2a 46 58 32 31 2c 33 0d 08 48 |=...>.*FX21,3..H| 000016a0 05 e1 0d 08 52 0b dd 20 f2 71 75 69 74 0d 08 5c |....R.. .quit..\| 000016b0 10 db 3a f2 64 61 74 61 63 68 65 63 6b 0d 08 70 |..:.datacheck..p| 000016c0 b3 e7 20 64 61 74 61 6c 65 6e 3d 30 20 f1 bd 31 |.. datalen=0 ..1| 000016d0 33 33 22 45 4e 44 22 3b 3a e0 3a 8b 20 f1 8a 30 |33"END";:.:. ..0| 000016e0 2c 36 29 22 59 6f 75 20 68 61 76 65 20 65 6e 74 |,6)"You have ent| 000016f0 65 72 65 64 20 64 61 74 61 2e 22 27 27 22 50 72 |ered data."''"Pr| 00001700 65 73 73 22 3b 3a f1 bd 31 33 30 22 52 45 54 55 |ess";:..130"RETU| 00001710 52 4e 22 3b 3a f1 bd 31 33 35 22 74 6f 20 72 65 |RN";:..135"to re| 00001720 74 75 72 6e 20 74 6f 20 74 68 65 20 4d 65 6e 75 |turn to the Menu| 00001730 2e 22 27 27 22 41 6e 79 20 6f 74 68 65 72 20 6b |."''"Any other k| 00001740 65 79 20 77 69 6c 6c 20 45 4e 44 20 74 68 65 20 |ey will END the | 00001750 70 72 6f 67 72 61 6d 20 61 6e 64 20 20 6d 61 79 |program and may| 00001760 20 6c 6f 73 65 20 74 68 65 20 64 61 74 61 2e 22 | lose the data."| 00001770 0d 08 7a 08 78 24 3d be 0d 08 84 23 e7 20 97 20 |..z.x$=....#. . | 00001780 78 24 3d 31 33 20 f2 6d 65 6e 75 20 8b 20 f1 bd |x$=13 .menu . ..| 00001790 31 33 33 22 45 4e 44 22 3b 3a e0 0d 08 8e 05 e1 |133"END";:......| 000017a0 0d 08 98 10 dd 20 f2 64 61 74 61 63 68 65 63 6b |..... .datacheck| 000017b0 0d 08 a2 0d 64 61 74 61 6c 65 6e 3d 30 0d 08 ac |....datalen=0...| 000017c0 28 e3 5a 25 3d 31 b8 33 38 3a 64 61 74 61 6c 65 |(.Z%=1.38:datale| 000017d0 6e 3d 64 61 74 61 6c 65 6e 2b a9 28 41 24 28 5a |n=datalen+.(A$(Z| 000017e0 25 29 29 3a ed 0d 08 b6 2b e3 5a 25 3d 31 b8 32 |%)):....+.Z%=1.2| 000017f0 3a 64 61 74 61 6c 65 6e 3d 64 61 74 61 6c 65 6e |:datalen=datalen| 00001800 2b a9 28 74 69 74 6c 65 24 28 5a 25 29 29 3a ed |+.(title$(Z%)):.| 00001810 0d 08 c0 2c e3 5a 25 3d 31 b8 32 3a 64 61 74 61 |...,.Z%=1.2:data| 00001820 6c 65 6e 3d 64 61 74 61 6c 65 6e 2b a9 28 64 65 |len=datalen+.(de| 00001830 74 61 69 6c 24 28 5a 25 29 29 3a ed 0d 08 ca 2b |tail$(Z%)):....+| 00001840 e3 5a 25 3d 31 b8 32 3a 64 61 74 61 6c 65 6e 3d |.Z%=1.2:datalen=| 00001850 64 61 74 61 6c 65 6e 2b a9 28 64 6f 6c 62 79 24 |datalen+.(dolby$| 00001860 28 5a 25 29 29 3a ed 0d 08 d4 19 64 61 74 61 6c |(Z%)):.....datal| 00001870 65 6e 3d 64 61 74 61 6c 65 6e 2b a9 28 43 24 29 |en=datalen+.(C$)| 00001880 0d 08 de 05 e1 0d ff |.......| 00001887