Home » Personal collection » Acorn ADFS disks » Electron_User_Group » EUG_12.ADF » EDL1

EDL1

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 » Personal collection » Acorn ADFS disks » Electron_User_Group » EUG_12.ADF
Filename: EDL1
Read OK:
File size: 1681 bytes
Load address: FFFF1D00
Exec address: FFFF8023
File contents
   10MODE3:VDU23,1,0;0;0;0;:VDU14:PRINT''"PRESS <SHIFT> TO SCROLL"'':PROCtext
   20REPEAT:PRINT''"PLEASE PRESS <P> TO PRINT TEXT, <E> FOR EDL PROGRAM, <M> FOR MAIN MENU"
   30REPEAT:A%=INSTR("EMP",GET$):UNTILA%
   40IFA%=1 THENCHAIN"$.EDL2"
   50IFA%=2 THENCHAIN"$.MENU"
   60IFA%=3 THENVDU15:VDU2:PROCtext:VDU3
   70UNTIL FALSE
   80END
   90DEF PROCtext
   91PRINT"                       D A T A    T R A N S F E R"
   92PRINT"                       ~~~~~~~~~~~~~~~~~~~~~~~~~~"
   93PRINT
  100PRINT"The program, EDL (Electron Data Link), is a much modified version of"
  110PRINT"Watford Electronics BBC-Z88 data transfer software which has the"
  120PRINT"restriction of only working to the Z88 and in Mode 7.  With more portable"
  130PRINT"computers on the market these days e.g. the Amstrad NC10 0 or 200, more"
  140PRINT"and more people will wish to transfer there data to and from such"
  150PRINT"machines.  With this in mind I set about trying to produce an easy to"
  160PRINT"understand file transfer utility."  
  170PRINT""
  180PRINT"For the utility to work you will require an RS423 interface, I believe"
  190PRINT"Slogger and Pres produced these add-ons."
  200PRINT""
  210PRINT"The BBC/Z88 program provided a good starting point but there were many"
  220PRINT"changes to be made, such as:"
  230PRINT""
  240PRINT""
  250PRINT"a) Improve the menu layout"
  260PRINT""
  270PRINT"b) Additional key presses (Short cuts) to select options."
  280PRINT""
  290PRINT"c) Each character is displayed on screen as it is sent or received in"
  300PRINT"   80 column format."
  310PRINT""
  320PRINT"d) The ability to add or remove Line Feeds from the displayed data"
  330PRINT"   (similar to the double line spacing or over-write effects on a"
  340PRINT"   printer)"
  350PRINT""
  360PRINT"e) Character count is displayed after transfer is complete."
  370PRINT""
  380PRINT"f) Work in Modes 6 and 7 with DFS and/or ADFS"
  390PRINT""
  400PRINT"g) Make it compatible with many more computers - probably not the Z88"
  410PRINT"   though."
  420PRINT""
  430PRINT"After all that there is very little left of the original program and I"
  440PRINT"think I have made it as simple to use as possible i.e. no messing around"
  450PRINT"with Start & Stop Bits etc. by using the Electron default settings."
  460PRINT""
  470PRINT"At this point I would like to thank Roy Warner for his articles on"
  480PRINT"Assembly language programming in previous issues of EUG, without these I"
  490PRINT"would probably never have ventured into this area - I struggle enough with"
  500PRINT"BASIC."
  510PRINT""
  520PRINT""
  530PRINT"How to use the program"
  540PRINT""
  550PRINT"To RUN the Data Transfer program CHAIN the file EDL2 in the normal way."
  560PRINT"A menu is presented with five options:"
  570PRINT""
  580PRINT"                (R)eceive"
  590PRINT"                (S)end"
  600PRINT"                (I)nbound CR/LF ON"
  610PRINT"                (O)utbound CR/LF ON"
  620PRINT"                (Q)uit"  
  630PRINT""
  640PRINT"Select your option by using the UP or DOWN cursor keys or by pressing  R,"
  650PRINT"S, I, O or Q."
  660PRINT""
  670PRINT"Receive - When 'Receive' is selected you are asked for a Filename to store"
  680PRINT"your data in:"
  690PRINT""
  700PRINT"Enter Filename then press RETURN"
  710PRINT""
  720PRINT"The computer will open a file on the disc and wait for the incoming data."
  730PRINT""
  740PRINT"Now send the data from your source computer.  As each character is "
  750PRINT"received it is displayed on screen in 80 column mode and on completion "
  760PRINT"the computer will close the file and, display in the bottom right corner"
  770PRINT"of the screen, the total characters received.  After a short delay you"
  780PRINT"are returned to the menu."
  790PRINT""
  800PRINT"Send - When 'Send' is selected you are asked for the Filename of your"
  810PRINT"source text:"
  820PRINT""
  830PRINT"Enter Filename and before pressing RETURN set up the receiving computer"
  840PRINT"to receive your data."
  850PRINT""
  860PRINT"The computer will now open the file, and as each character is sent it is"
  870PRINT"displayed on screen in 80 column mode.  At the end of transmission the"
  880PRINT"computer will display, in the bottom right corner of the screen, the"
  890PRINT"total characters sent.  After a short delay you are returned to the menu."
  900PRINT""
  910PRINT"Inbound CR/LF (CR - carriage return, LF - line feed).  This is normally"
  920PRINT"set to ON which means that when a CR code is received it will append a LF"
  930PRINT"code when the character is sent to the screen forcing the cursor on to a"
  940PRINT"new line.  Some computers will send both a CR and a LF code so the option"
  950PRINT"is there to remove the LF appended by the Electron.  Pressing  I  or"
  960PRINT"RETURN on this option toggles between CR/LF ON and OFF."
  970PRINT""
  980PRINT"Outbound CR/LF - this is normally set to ON which means that when sending"
  990PRINT"a CR code it will append a LF code when it is sent to the screen, forcing"
 1000PRINT"the cursor on to a new line.  Some files may have LF codes present so the"
 1010PRINT"option is there to remove the one appended by the Electron.  Pressing  O"
 1020PRINT"or RETURN on this option toggles between CR/LF ON and OFF."
 1030PRINT""
 1040PRINT"NOTES"
 1050PRINT""
 1060PRINT"View files do not have the LF code present so the default setting is ON."
 1070PRINT""
 1080PRINT"The I and O option only affects the screen and not the contents of the"
 1090PRINT"file."
 1100PRINT""
 1110PRINT"(Q) Returns you to BASIC."
 1120PRINT""
 1130PRINT"* COMMANDS can be issued from the main menu."
 1140PRINT""
 1150PRINT"To over-come the problem of sending BASIC programs to other computers"
 1160PRINT"simply *SPOOL the program and *EXEC it back to BASIC once stored in the"
 1170PRINT"destination computer."
 1180PRINT""
 1190PRINT"The Serial interface is set to the default settings of the Electron"
 1200PRINT"Computer and shouldn't need to be altered:"
 1210PRINT""
 1220PRINT"Start Bits  1               Stop Bits     1"
 1230PRINT"Data Bits   8               Baud Rate     9600"
 1240PRINT""
 1250PRINT"In the unlikely event that they do need changing, they can be by listing"
 1260PRINT"line Numbers 530 to 590 and changing the *FX values.  See your RS423"
 1270PRINT"Peripheral User Guide or the BBC User Guide for the new values."
 1280PRINT""
 1290PRINT""
 1300PRINT"Derek Walker"
 1310PRINT"Jan'94"
 1315PRINT"*************************************************************************"
 1320ENDPROC

>�3:�23,1,0;0;0;0;:�14:�''"PRESS <SHIFT> TO SCROLL"'':�text
Q�:�''"PLEASE PRESS <P> TO PRINT TEXT, <E> FOR EDL PROGRAM, <M> FOR MAIN MENU"
�:A%=�"EMP",�):�A%
(�A%=1 ��"$.EDL2"
2�A%=2 ��"$.MENU"
<�A%=3 ��15:�2:�text:�3
F� �
P�
Z� �text
[8�"                       D A T A    T R A N S F E R"
\8�"                       ~~~~~~~~~~~~~~~~~~~~~~~~~~"
]�
dK�"The program, EDL (Electron Data Link), is a much modified version of"
nG�"Watford Electronics BBC-Z88 data transfer software which has the"
xP�"restriction of only working to the Z88 and in Mode 7.  With more portable"
�N�"computers on the market these days e.g. the Amstrad NC10 0 or 200, more"
�H�"and more people will wish to transfer there data to and from such"
�L�"machines.  With this in mind I set about trying to produce an easy to"
�*�"understand file transfer utility."  
��""
�M�"For the utility to work you will require an RS423 interface, I believe"
�/�"Slogger and Pres produced these add-ons."
��""
�M�"The BBC/Z88 program provided a good starting point but there were many"
�#�"changes to be made, such as:"
��""
��""
�!�"a) Improve the menu layout"
�""
@�"b) Additional key presses (Short cuts) to select options."
�""
"L�"c) Each character is displayed on screen as it is sent or received in"
,�"   80 column format."
6�""
@I�"d) The ability to add or remove Line Feeds from the displayed data"
JH�"   (similar to the double line spacing or over-write effects on a"
T�"   printer)"
^�""
hB�"e) Character count is displayed after transfer is complete."
r�""
|4�"f) Work in Modes 6 and 7 with DFS and/or ADFS"
��""
�L�"g) Make it compatible with many more computers - probably not the Z88"
��"   though."
��""
�M�"After all that there is very little left of the original program and I"
�O�"think I have made it as simple to use as possible i.e. no messing around"
�J�"with Start & Stop Bits etc. by using the Electron default settings."
��""
�I�"At this point I would like to thank Roy Warner for his articles on"
�O�"Assembly language programming in previous issues of EUG, without these I"
�Q�"would probably never have ventured into this area - I struggle enough with"
�
�"BASIC."
��""
�""
�"How to use the program"
�""
&N�"To RUN the Data Transfer program CHAIN the file EDL2 in the normal way."
0-�"A menu is presented with five options:"
:�""
D �"                (R)eceive"
N�"                (S)end"
X)�"                (I)nbound CR/LF ON"
b*�"                (O)utbound CR/LF ON"
l�"                (Q)uit"  
v�""
�P�"Select your option by using the UP or DOWN cursor keys or by pressing  R,"
��"S, I, O or Q."
��""
�Q�"Receive - When 'Receive' is selected you are asked for a Filename to store"
��"your data in:"
��""
�'�"Enter Filename then press RETURN"
��""
�P�"The computer will open a file on the disc and wait for the incoming data."
��""
�J�"Now send the data from your source computer.  As each character is "
�N�"received it is displayed on screen in 80 column mode and on completion "
�O�"the computer will close the file and, display in the bottom right corner"
M�"of the screen, the total characters received.  After a short delay you"
 �"are returned to the menu."
�""
 L�"Send - When 'Send' is selected you are asked for the Filename of your"
*�"source text:"
4�""
>N�"Enter Filename and before pressing RETURN set up the receiving computer"
H�"to receive your data."
R�""
\O�"The computer will now open the file, and as each character is sent it is"
fM�"displayed on screen in 80 column mode.  At the end of transmission the"
pK�"computer will display, in the bottom right corner of the screen, the"
zP�"total characters sent.  After a short delay you are returned to the menu."
��""
�N�"Inbound CR/LF (CR - carriage return, LF - line feed).  This is normally"
�P�"set to ON which means that when a CR code is received it will append a LF"
�O�"code when the character is sent to the screen forcing the cursor on to a"
�P�"new line.  Some computers will send both a CR and a LF code so the option"
�K�"is there to remove the LF appended by the Electron.  Pressing  I  or"
�>�"RETURN on this option toggles between CR/LF ON and OFF."
��""
�P�"Outbound CR/LF - this is normally set to ON which means that when sending"
�P�"a CR code it will append a LF code when it is sent to the screen, forcing"
�P�"the cursor on to a new line.  Some files may have LF codes present so the"
�O�"option is there to remove the one appended by the Electron.  Pressing  O"
�A�"or RETURN on this option toggles between CR/LF ON and OFF."
�""
�"NOTES"
�""
$O�"View files do not have the LF code present so the default setting is ON."
.�""
8M�"The I and O option only affects the screen and not the contents of the"
B�"file."
L�""
V �"(Q) Returns you to BASIC."
`�""
j3�"* COMMANDS can be issued from the main menu."
t�""
~L�"To over-come the problem of sending BASIC programs to other computers"
�N�"simply *SPOOL the program and *EXEC it back to BASIC once stored in the"
��"destination computer."
��""
�J�"The Serial interface is set to the default settings of the Electron"
�1�"Computer and shouldn't need to be altered:"
��""
�2�"Start Bits  1               Stop Bits     1"
�5�"Data Bits   8               Baud Rate     9600"
��""
�O�"In the unlikely event that they do need changing, they can be by listing"
�K�"line Numbers 530 to 590 and changing the *FX values.  See your RS423"
�F�"Peripheral User Guide or the BBC User Guide for the new values."
�""

�""
�"Derek Walker"

�"Jan'94"
#P�"*************************************************************************"
(�
�
00000000  0d 00 0a 3e eb 33 3a ef  32 33 2c 31 2c 30 3b 30  |...>.3:.23,1,0;0|
00000010  3b 30 3b 30 3b 3a ef 31  34 3a f1 27 27 22 50 52  |;0;0;:.14:.''"PR|
00000020  45 53 53 20 3c 53 48 49  46 54 3e 20 54 4f 20 53  |ESS <SHIFT> TO S|
00000030  43 52 4f 4c 4c 22 27 27  3a f2 74 65 78 74 0d 00  |CROLL"'':.text..|
00000040  14 51 f5 3a f1 27 27 22  50 4c 45 41 53 45 20 50  |.Q.:.''"PLEASE P|
00000050  52 45 53 53 20 3c 50 3e  20 54 4f 20 50 52 49 4e  |RESS <P> TO PRIN|
00000060  54 20 54 45 58 54 2c 20  3c 45 3e 20 46 4f 52 20  |T TEXT, <E> FOR |
00000070  45 44 4c 20 50 52 4f 47  52 41 4d 2c 20 3c 4d 3e  |EDL PROGRAM, <M>|
00000080  20 46 4f 52 20 4d 41 49  4e 20 4d 45 4e 55 22 0d  | FOR MAIN MENU".|
00000090  00 1e 16 f5 3a 41 25 3d  a7 22 45 4d 50 22 2c be  |....:A%=."EMP",.|
000000a0  29 3a fd 41 25 0d 00 28  14 e7 41 25 3d 31 20 8c  |):.A%..(..A%=1 .|
000000b0  d7 22 24 2e 45 44 4c 32  22 0d 00 32 14 e7 41 25  |."$.EDL2"..2..A%|
000000c0  3d 32 20 8c d7 22 24 2e  4d 45 4e 55 22 0d 00 3c  |=2 .."$.MENU"..<|
000000d0  1a e7 41 25 3d 33 20 8c  ef 31 35 3a ef 32 3a f2  |..A%=3 ..15:.2:.|
000000e0  74 65 78 74 3a ef 33 0d  00 46 07 fd 20 a3 0d 00  |text:.3..F.. ...|
000000f0  50 05 e0 0d 00 5a 0b dd  20 f2 74 65 78 74 0d 00  |P....Z.. .text..|
00000100  5b 38 f1 22 20 20 20 20  20 20 20 20 20 20 20 20  |[8."            |
00000110  20 20 20 20 20 20 20 20  20 20 20 44 20 41 20 54  |           D A T|
00000120  20 41 20 20 20 20 54 20  52 20 41 20 4e 20 53 20  | A    T R A N S |
00000130  46 20 45 20 52 22 0d 00  5c 38 f1 22 20 20 20 20  |F E R"..\8."    |
00000140  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000150  20 20 20 7e 7e 7e 7e 7e  7e 7e 7e 7e 7e 7e 7e 7e  |   ~~~~~~~~~~~~~|
00000160  7e 7e 7e 7e 7e 7e 7e 7e  7e 7e 7e 7e 7e 22 0d 00  |~~~~~~~~~~~~~"..|
00000170  5d 05 f1 0d 00 64 4b f1  22 54 68 65 20 70 72 6f  |]....dK."The pro|
00000180  67 72 61 6d 2c 20 45 44  4c 20 28 45 6c 65 63 74  |gram, EDL (Elect|
00000190  72 6f 6e 20 44 61 74 61  20 4c 69 6e 6b 29 2c 20  |ron Data Link), |
000001a0  69 73 20 61 20 6d 75 63  68 20 6d 6f 64 69 66 69  |is a much modifi|
000001b0  65 64 20 76 65 72 73 69  6f 6e 20 6f 66 22 0d 00  |ed version of"..|
000001c0  6e 47 f1 22 57 61 74 66  6f 72 64 20 45 6c 65 63  |nG."Watford Elec|
000001d0  74 72 6f 6e 69 63 73 20  42 42 43 2d 5a 38 38 20  |tronics BBC-Z88 |
000001e0  64 61 74 61 20 74 72 61  6e 73 66 65 72 20 73 6f  |data transfer so|
000001f0  66 74 77 61 72 65 20 77  68 69 63 68 20 68 61 73  |ftware which has|
00000200  20 74 68 65 22 0d 00 78  50 f1 22 72 65 73 74 72  | the"..xP."restr|
00000210  69 63 74 69 6f 6e 20 6f  66 20 6f 6e 6c 79 20 77  |iction of only w|
00000220  6f 72 6b 69 6e 67 20 74  6f 20 74 68 65 20 5a 38  |orking to the Z8|
00000230  38 20 61 6e 64 20 69 6e  20 4d 6f 64 65 20 37 2e  |8 and in Mode 7.|
00000240  20 20 57 69 74 68 20 6d  6f 72 65 20 70 6f 72 74  |  With more port|
00000250  61 62 6c 65 22 0d 00 82  4e f1 22 63 6f 6d 70 75  |able"...N."compu|
00000260  74 65 72 73 20 6f 6e 20  74 68 65 20 6d 61 72 6b  |ters on the mark|
00000270  65 74 20 74 68 65 73 65  20 64 61 79 73 20 65 2e  |et these days e.|
00000280  67 2e 20 74 68 65 20 41  6d 73 74 72 61 64 20 4e  |g. the Amstrad N|
00000290  43 31 30 20 30 20 6f 72  20 32 30 30 2c 20 6d 6f  |C10 0 or 200, mo|
000002a0  72 65 22 0d 00 8c 48 f1  22 61 6e 64 20 6d 6f 72  |re"...H."and mor|
000002b0  65 20 70 65 6f 70 6c 65  20 77 69 6c 6c 20 77 69  |e people will wi|
000002c0  73 68 20 74 6f 20 74 72  61 6e 73 66 65 72 20 74  |sh to transfer t|
000002d0  68 65 72 65 20 64 61 74  61 20 74 6f 20 61 6e 64  |here data to and|
000002e0  20 66 72 6f 6d 20 73 75  63 68 22 0d 00 96 4c f1  | from such"...L.|
000002f0  22 6d 61 63 68 69 6e 65  73 2e 20 20 57 69 74 68  |"machines.  With|
00000300  20 74 68 69 73 20 69 6e  20 6d 69 6e 64 20 49 20  | this in mind I |
00000310  73 65 74 20 61 62 6f 75  74 20 74 72 79 69 6e 67  |set about trying|
00000320  20 74 6f 20 70 72 6f 64  75 63 65 20 61 6e 20 65  | to produce an e|
00000330  61 73 79 20 74 6f 22 0d  00 a0 2a f1 22 75 6e 64  |asy to"...*."und|
00000340  65 72 73 74 61 6e 64 20  66 69 6c 65 20 74 72 61  |erstand file tra|
00000350  6e 73 66 65 72 20 75 74  69 6c 69 74 79 2e 22 20  |nsfer utility." |
00000360  20 0d 00 aa 07 f1 22 22  0d 00 b4 4d f1 22 46 6f  | .....""...M."Fo|
00000370  72 20 74 68 65 20 75 74  69 6c 69 74 79 20 74 6f  |r the utility to|
00000380  20 77 6f 72 6b 20 79 6f  75 20 77 69 6c 6c 20 72  | work you will r|
00000390  65 71 75 69 72 65 20 61  6e 20 52 53 34 32 33 20  |equire an RS423 |
000003a0  69 6e 74 65 72 66 61 63  65 2c 20 49 20 62 65 6c  |interface, I bel|
000003b0  69 65 76 65 22 0d 00 be  2f f1 22 53 6c 6f 67 67  |ieve".../."Slogg|
000003c0  65 72 20 61 6e 64 20 50  72 65 73 20 70 72 6f 64  |er and Pres prod|
000003d0  75 63 65 64 20 74 68 65  73 65 20 61 64 64 2d 6f  |uced these add-o|
000003e0  6e 73 2e 22 0d 00 c8 07  f1 22 22 0d 00 d2 4d f1  |ns.".....""...M.|
000003f0  22 54 68 65 20 42 42 43  2f 5a 38 38 20 70 72 6f  |"The BBC/Z88 pro|
00000400  67 72 61 6d 20 70 72 6f  76 69 64 65 64 20 61 20  |gram provided a |
00000410  67 6f 6f 64 20 73 74 61  72 74 69 6e 67 20 70 6f  |good starting po|
00000420  69 6e 74 20 62 75 74 20  74 68 65 72 65 20 77 65  |int but there we|
00000430  72 65 20 6d 61 6e 79 22  0d 00 dc 23 f1 22 63 68  |re many"...#."ch|
00000440  61 6e 67 65 73 20 74 6f  20 62 65 20 6d 61 64 65  |anges to be made|
00000450  2c 20 73 75 63 68 20 61  73 3a 22 0d 00 e6 07 f1  |, such as:".....|
00000460  22 22 0d 00 f0 07 f1 22  22 0d 00 fa 21 f1 22 61  |"".....""...!."a|
00000470  29 20 49 6d 70 72 6f 76  65 20 74 68 65 20 6d 65  |) Improve the me|
00000480  6e 75 20 6c 61 79 6f 75  74 22 0d 01 04 07 f1 22  |nu layout"....."|
00000490  22 0d 01 0e 40 f1 22 62  29 20 41 64 64 69 74 69  |"...@."b) Additi|
000004a0  6f 6e 61 6c 20 6b 65 79  20 70 72 65 73 73 65 73  |onal key presses|
000004b0  20 28 53 68 6f 72 74 20  63 75 74 73 29 20 74 6f  | (Short cuts) to|
000004c0  20 73 65 6c 65 63 74 20  6f 70 74 69 6f 6e 73 2e  | select options.|
000004d0  22 0d 01 18 07 f1 22 22  0d 01 22 4c f1 22 63 29  |"....."".."L."c)|
000004e0  20 45 61 63 68 20 63 68  61 72 61 63 74 65 72 20  | Each character |
000004f0  69 73 20 64 69 73 70 6c  61 79 65 64 20 6f 6e 20  |is displayed on |
00000500  73 63 72 65 65 6e 20 61  73 20 69 74 20 69 73 20  |screen as it is |
00000510  73 65 6e 74 20 6f 72 20  72 65 63 65 69 76 65 64  |sent or received|
00000520  20 69 6e 22 0d 01 2c 1b  f1 22 20 20 20 38 30 20  | in"..,.."   80 |
00000530  63 6f 6c 75 6d 6e 20 66  6f 72 6d 61 74 2e 22 0d  |column format.".|
00000540  01 36 07 f1 22 22 0d 01  40 49 f1 22 64 29 20 54  |.6..""..@I."d) T|
00000550  68 65 20 61 62 69 6c 69  74 79 20 74 6f 20 61 64  |he ability to ad|
00000560  64 20 6f 72 20 72 65 6d  6f 76 65 20 4c 69 6e 65  |d or remove Line|
00000570  20 46 65 65 64 73 20 66  72 6f 6d 20 74 68 65 20  | Feeds from the |
00000580  64 69 73 70 6c 61 79 65  64 20 64 61 74 61 22 0d  |displayed data".|
00000590  01 4a 48 f1 22 20 20 20  28 73 69 6d 69 6c 61 72  |.JH."   (similar|
000005a0  20 74 6f 20 74 68 65 20  64 6f 75 62 6c 65 20 6c  | to the double l|
000005b0  69 6e 65 20 73 70 61 63  69 6e 67 20 6f 72 20 6f  |ine spacing or o|
000005c0  76 65 72 2d 77 72 69 74  65 20 65 66 66 65 63 74  |ver-write effect|
000005d0  73 20 6f 6e 20 61 22 0d  01 54 12 f1 22 20 20 20  |s on a"..T.."   |
000005e0  70 72 69 6e 74 65 72 29  22 0d 01 5e 07 f1 22 22  |printer)"..^..""|
000005f0  0d 01 68 42 f1 22 65 29  20 43 68 61 72 61 63 74  |..hB."e) Charact|
00000600  65 72 20 63 6f 75 6e 74  20 69 73 20 64 69 73 70  |er count is disp|
00000610  6c 61 79 65 64 20 61 66  74 65 72 20 74 72 61 6e  |layed after tran|
00000620  73 66 65 72 20 69 73 20  63 6f 6d 70 6c 65 74 65  |sfer is complete|
00000630  2e 22 0d 01 72 07 f1 22  22 0d 01 7c 34 f1 22 66  |."..r..""..|4."f|
00000640  29 20 57 6f 72 6b 20 69  6e 20 4d 6f 64 65 73 20  |) Work in Modes |
00000650  36 20 61 6e 64 20 37 20  77 69 74 68 20 44 46 53  |6 and 7 with DFS|
00000660  20 61 6e 64 2f 6f 72 20  41 44 46 53 22 0d 01 86  | and/or ADFS"...|
00000670  07 f1 22 22 0d 01 90 4c  f1 22 67 29 20 4d 61 6b  |..""...L."g) Mak|
00000680  65 20 69 74 20 63 6f 6d  70 61 74 69 62 6c 65 20  |e it compatible |
00000690  77 69 74 68 20 6d 61 6e  79 20 6d 6f 72 65 20 63  |with many more c|
000006a0  6f 6d 70 75 74 65 72 73  20 2d 20 70 72 6f 62 61  |omputers - proba|
000006b0  62 6c 79 20 6e 6f 74 20  74 68 65 20 5a 38 38 22  |bly not the Z88"|
000006c0  0d 01 9a 11 f1 22 20 20  20 74 68 6f 75 67 68 2e  |....."   though.|
000006d0  22 0d 01 a4 07 f1 22 22  0d 01 ae 4d f1 22 41 66  |".....""...M."Af|
000006e0  74 65 72 20 61 6c 6c 20  74 68 61 74 20 74 68 65  |ter all that the|
000006f0  72 65 20 69 73 20 76 65  72 79 20 6c 69 74 74 6c  |re is very littl|
00000700  65 20 6c 65 66 74 20 6f  66 20 74 68 65 20 6f 72  |e left of the or|
00000710  69 67 69 6e 61 6c 20 70  72 6f 67 72 61 6d 20 61  |iginal program a|
00000720  6e 64 20 49 22 0d 01 b8  4f f1 22 74 68 69 6e 6b  |nd I"...O."think|
00000730  20 49 20 68 61 76 65 20  6d 61 64 65 20 69 74 20  | I have made it |
00000740  61 73 20 73 69 6d 70 6c  65 20 74 6f 20 75 73 65  |as simple to use|
00000750  20 61 73 20 70 6f 73 73  69 62 6c 65 20 69 2e 65  | as possible i.e|
00000760  2e 20 6e 6f 20 6d 65 73  73 69 6e 67 20 61 72 6f  |. no messing aro|
00000770  75 6e 64 22 0d 01 c2 4a  f1 22 77 69 74 68 20 53  |und"...J."with S|
00000780  74 61 72 74 20 26 20 53  74 6f 70 20 42 69 74 73  |tart & Stop Bits|
00000790  20 65 74 63 2e 20 62 79  20 75 73 69 6e 67 20 74  | etc. by using t|
000007a0  68 65 20 45 6c 65 63 74  72 6f 6e 20 64 65 66 61  |he Electron defa|
000007b0  75 6c 74 20 73 65 74 74  69 6e 67 73 2e 22 0d 01  |ult settings."..|
000007c0  cc 07 f1 22 22 0d 01 d6  49 f1 22 41 74 20 74 68  |...""...I."At th|
000007d0  69 73 20 70 6f 69 6e 74  20 49 20 77 6f 75 6c 64  |is point I would|
000007e0  20 6c 69 6b 65 20 74 6f  20 74 68 61 6e 6b 20 52  | like to thank R|
000007f0  6f 79 20 57 61 72 6e 65  72 20 66 6f 72 20 68 69  |oy Warner for hi|
00000800  73 20 61 72 74 69 63 6c  65 73 20 6f 6e 22 0d 01  |s articles on"..|
00000810  e0 4f f1 22 41 73 73 65  6d 62 6c 79 20 6c 61 6e  |.O."Assembly lan|
00000820  67 75 61 67 65 20 70 72  6f 67 72 61 6d 6d 69 6e  |guage programmin|
00000830  67 20 69 6e 20 70 72 65  76 69 6f 75 73 20 69 73  |g in previous is|
00000840  73 75 65 73 20 6f 66 20  45 55 47 2c 20 77 69 74  |sues of EUG, wit|
00000850  68 6f 75 74 20 74 68 65  73 65 20 49 22 0d 01 ea  |hout these I"...|
00000860  51 f1 22 77 6f 75 6c 64  20 70 72 6f 62 61 62 6c  |Q."would probabl|
00000870  79 20 6e 65 76 65 72 20  68 61 76 65 20 76 65 6e  |y never have ven|
00000880  74 75 72 65 64 20 69 6e  74 6f 20 74 68 69 73 20  |tured into this |
00000890  61 72 65 61 20 2d 20 49  20 73 74 72 75 67 67 6c  |area - I struggl|
000008a0  65 20 65 6e 6f 75 67 68  20 77 69 74 68 22 0d 01  |e enough with"..|
000008b0  f4 0d f1 22 42 41 53 49  43 2e 22 0d 01 fe 07 f1  |..."BASIC.".....|
000008c0  22 22 0d 02 08 07 f1 22  22 0d 02 12 1d f1 22 48  |"".....""....."H|
000008d0  6f 77 20 74 6f 20 75 73  65 20 74 68 65 20 70 72  |ow to use the pr|
000008e0  6f 67 72 61 6d 22 0d 02  1c 07 f1 22 22 0d 02 26  |ogram".....""..&|
000008f0  4e f1 22 54 6f 20 52 55  4e 20 74 68 65 20 44 61  |N."To RUN the Da|
00000900  74 61 20 54 72 61 6e 73  66 65 72 20 70 72 6f 67  |ta Transfer prog|
00000910  72 61 6d 20 43 48 41 49  4e 20 74 68 65 20 66 69  |ram CHAIN the fi|
00000920  6c 65 20 45 44 4c 32 20  69 6e 20 74 68 65 20 6e  |le EDL2 in the n|
00000930  6f 72 6d 61 6c 20 77 61  79 2e 22 0d 02 30 2d f1  |ormal way."..0-.|
00000940  22 41 20 6d 65 6e 75 20  69 73 20 70 72 65 73 65  |"A menu is prese|
00000950  6e 74 65 64 20 77 69 74  68 20 66 69 76 65 20 6f  |nted with five o|
00000960  70 74 69 6f 6e 73 3a 22  0d 02 3a 07 f1 22 22 0d  |ptions:"..:.."".|
00000970  02 44 20 f1 22 20 20 20  20 20 20 20 20 20 20 20  |.D ."           |
00000980  20 20 20 20 20 28 52 29  65 63 65 69 76 65 22 0d  |     (R)eceive".|
00000990  02 4e 1d f1 22 20 20 20  20 20 20 20 20 20 20 20  |.N.."           |
000009a0  20 20 20 20 20 28 53 29  65 6e 64 22 0d 02 58 29  |     (S)end"..X)|
000009b0  f1 22 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |."              |
000009c0  20 20 28 49 29 6e 62 6f  75 6e 64 20 43 52 2f 4c  |  (I)nbound CR/L|
000009d0  46 20 4f 4e 22 0d 02 62  2a f1 22 20 20 20 20 20  |F ON"..b*."     |
000009e0  20 20 20 20 20 20 20 20  20 20 20 28 4f 29 75 74  |           (O)ut|
000009f0  62 6f 75 6e 64 20 43 52  2f 4c 46 20 4f 4e 22 0d  |bound CR/LF ON".|
00000a00  02 6c 1f f1 22 20 20 20  20 20 20 20 20 20 20 20  |.l.."           |
00000a10  20 20 20 20 20 28 51 29  75 69 74 22 20 20 0d 02  |     (Q)uit"  ..|
00000a20  76 07 f1 22 22 0d 02 80  50 f1 22 53 65 6c 65 63  |v..""...P."Selec|
00000a30  74 20 79 6f 75 72 20 6f  70 74 69 6f 6e 20 62 79  |t your option by|
00000a40  20 75 73 69 6e 67 20 74  68 65 20 55 50 20 6f 72  | using the UP or|
00000a50  20 44 4f 57 4e 20 63 75  72 73 6f 72 20 6b 65 79  | DOWN cursor key|
00000a60  73 20 6f 72 20 62 79 20  70 72 65 73 73 69 6e 67  |s or by pressing|
00000a70  20 20 52 2c 22 0d 02 8a  14 f1 22 53 2c 20 49 2c  |  R,"....."S, I,|
00000a80  20 4f 20 6f 72 20 51 2e  22 0d 02 94 07 f1 22 22  | O or Q.".....""|
00000a90  0d 02 9e 51 f1 22 52 65  63 65 69 76 65 20 2d 20  |...Q."Receive - |
00000aa0  57 68 65 6e 20 27 52 65  63 65 69 76 65 27 20 69  |When 'Receive' i|
00000ab0  73 20 73 65 6c 65 63 74  65 64 20 79 6f 75 20 61  |s selected you a|
00000ac0  72 65 20 61 73 6b 65 64  20 66 6f 72 20 61 20 46  |re asked for a F|
00000ad0  69 6c 65 6e 61 6d 65 20  74 6f 20 73 74 6f 72 65  |ilename to store|
00000ae0  22 0d 02 a8 14 f1 22 79  6f 75 72 20 64 61 74 61  |"....."your data|
00000af0  20 69 6e 3a 22 0d 02 b2  07 f1 22 22 0d 02 bc 27  | in:".....""...'|
00000b00  f1 22 45 6e 74 65 72 20  46 69 6c 65 6e 61 6d 65  |."Enter Filename|
00000b10  20 74 68 65 6e 20 70 72  65 73 73 20 52 45 54 55  | then press RETU|
00000b20  52 4e 22 0d 02 c6 07 f1  22 22 0d 02 d0 50 f1 22  |RN".....""...P."|
00000b30  54 68 65 20 63 6f 6d 70  75 74 65 72 20 77 69 6c  |The computer wil|
00000b40  6c 20 6f 70 65 6e 20 61  20 66 69 6c 65 20 6f 6e  |l open a file on|
00000b50  20 74 68 65 20 64 69 73  63 20 61 6e 64 20 77 61  | the disc and wa|
00000b60  69 74 20 66 6f 72 20 74  68 65 20 69 6e 63 6f 6d  |it for the incom|
00000b70  69 6e 67 20 64 61 74 61  2e 22 0d 02 da 07 f1 22  |ing data."....."|
00000b80  22 0d 02 e4 4a f1 22 4e  6f 77 20 73 65 6e 64 20  |"...J."Now send |
00000b90  74 68 65 20 64 61 74 61  20 66 72 6f 6d 20 79 6f  |the data from yo|
00000ba0  75 72 20 73 6f 75 72 63  65 20 63 6f 6d 70 75 74  |ur source comput|
00000bb0  65 72 2e 20 20 41 73 20  65 61 63 68 20 63 68 61  |er.  As each cha|
00000bc0  72 61 63 74 65 72 20 69  73 20 22 0d 02 ee 4e f1  |racter is "...N.|
00000bd0  22 72 65 63 65 69 76 65  64 20 69 74 20 69 73 20  |"received it is |
00000be0  64 69 73 70 6c 61 79 65  64 20 6f 6e 20 73 63 72  |displayed on scr|
00000bf0  65 65 6e 20 69 6e 20 38  30 20 63 6f 6c 75 6d 6e  |een in 80 column|
00000c00  20 6d 6f 64 65 20 61 6e  64 20 6f 6e 20 63 6f 6d  | mode and on com|
00000c10  70 6c 65 74 69 6f 6e 20  22 0d 02 f8 4f f1 22 74  |pletion "...O."t|
00000c20  68 65 20 63 6f 6d 70 75  74 65 72 20 77 69 6c 6c  |he computer will|
00000c30  20 63 6c 6f 73 65 20 74  68 65 20 66 69 6c 65 20  | close the file |
00000c40  61 6e 64 2c 20 64 69 73  70 6c 61 79 20 69 6e 20  |and, display in |
00000c50  74 68 65 20 62 6f 74 74  6f 6d 20 72 69 67 68 74  |the bottom right|
00000c60  20 63 6f 72 6e 65 72 22  0d 03 02 4d f1 22 6f 66  | corner"...M."of|
00000c70  20 74 68 65 20 73 63 72  65 65 6e 2c 20 74 68 65  | the screen, the|
00000c80  20 74 6f 74 61 6c 20 63  68 61 72 61 63 74 65 72  | total character|
00000c90  73 20 72 65 63 65 69 76  65 64 2e 20 20 41 66 74  |s received.  Aft|
00000ca0  65 72 20 61 20 73 68 6f  72 74 20 64 65 6c 61 79  |er a short delay|
00000cb0  20 79 6f 75 22 0d 03 0c  20 f1 22 61 72 65 20 72  | you"... ."are r|
00000cc0  65 74 75 72 6e 65 64 20  74 6f 20 74 68 65 20 6d  |eturned to the m|
00000cd0  65 6e 75 2e 22 0d 03 16  07 f1 22 22 0d 03 20 4c  |enu."....."".. L|
00000ce0  f1 22 53 65 6e 64 20 2d  20 57 68 65 6e 20 27 53  |."Send - When 'S|
00000cf0  65 6e 64 27 20 69 73 20  73 65 6c 65 63 74 65 64  |end' is selected|
00000d00  20 79 6f 75 20 61 72 65  20 61 73 6b 65 64 20 66  | you are asked f|
00000d10  6f 72 20 74 68 65 20 46  69 6c 65 6e 61 6d 65 20  |or the Filename |
00000d20  6f 66 20 79 6f 75 72 22  0d 03 2a 13 f1 22 73 6f  |of your"..*.."so|
00000d30  75 72 63 65 20 74 65 78  74 3a 22 0d 03 34 07 f1  |urce text:"..4..|
00000d40  22 22 0d 03 3e 4e f1 22  45 6e 74 65 72 20 46 69  |""..>N."Enter Fi|
00000d50  6c 65 6e 61 6d 65 20 61  6e 64 20 62 65 66 6f 72  |lename and befor|
00000d60  65 20 70 72 65 73 73 69  6e 67 20 52 45 54 55 52  |e pressing RETUR|
00000d70  4e 20 73 65 74 20 75 70  20 74 68 65 20 72 65 63  |N set up the rec|
00000d80  65 69 76 69 6e 67 20 63  6f 6d 70 75 74 65 72 22  |eiving computer"|
00000d90  0d 03 48 1c f1 22 74 6f  20 72 65 63 65 69 76 65  |..H.."to receive|
00000da0  20 79 6f 75 72 20 64 61  74 61 2e 22 0d 03 52 07  | your data."..R.|
00000db0  f1 22 22 0d 03 5c 4f f1  22 54 68 65 20 63 6f 6d  |.""..\O."The com|
00000dc0  70 75 74 65 72 20 77 69  6c 6c 20 6e 6f 77 20 6f  |puter will now o|
00000dd0  70 65 6e 20 74 68 65 20  66 69 6c 65 2c 20 61 6e  |pen the file, an|
00000de0  64 20 61 73 20 65 61 63  68 20 63 68 61 72 61 63  |d as each charac|
00000df0  74 65 72 20 69 73 20 73  65 6e 74 20 69 74 20 69  |ter is sent it i|
00000e00  73 22 0d 03 66 4d f1 22  64 69 73 70 6c 61 79 65  |s"..fM."displaye|
00000e10  64 20 6f 6e 20 73 63 72  65 65 6e 20 69 6e 20 38  |d on screen in 8|
00000e20  30 20 63 6f 6c 75 6d 6e  20 6d 6f 64 65 2e 20 20  |0 column mode.  |
00000e30  41 74 20 74 68 65 20 65  6e 64 20 6f 66 20 74 72  |At the end of tr|
00000e40  61 6e 73 6d 69 73 73 69  6f 6e 20 74 68 65 22 0d  |ansmission the".|
00000e50  03 70 4b f1 22 63 6f 6d  70 75 74 65 72 20 77 69  |.pK."computer wi|
00000e60  6c 6c 20 64 69 73 70 6c  61 79 2c 20 69 6e 20 74  |ll display, in t|
00000e70  68 65 20 62 6f 74 74 6f  6d 20 72 69 67 68 74 20  |he bottom right |
00000e80  63 6f 72 6e 65 72 20 6f  66 20 74 68 65 20 73 63  |corner of the sc|
00000e90  72 65 65 6e 2c 20 74 68  65 22 0d 03 7a 50 f1 22  |reen, the"..zP."|
00000ea0  74 6f 74 61 6c 20 63 68  61 72 61 63 74 65 72 73  |total characters|
00000eb0  20 73 65 6e 74 2e 20 20  41 66 74 65 72 20 61 20  | sent.  After a |
00000ec0  73 68 6f 72 74 20 64 65  6c 61 79 20 79 6f 75 20  |short delay you |
00000ed0  61 72 65 20 72 65 74 75  72 6e 65 64 20 74 6f 20  |are returned to |
00000ee0  74 68 65 20 6d 65 6e 75  2e 22 0d 03 84 07 f1 22  |the menu."....."|
00000ef0  22 0d 03 8e 4e f1 22 49  6e 62 6f 75 6e 64 20 43  |"...N."Inbound C|
00000f00  52 2f 4c 46 20 28 43 52  20 2d 20 63 61 72 72 69  |R/LF (CR - carri|
00000f10  61 67 65 20 72 65 74 75  72 6e 2c 20 4c 46 20 2d  |age return, LF -|
00000f20  20 6c 69 6e 65 20 66 65  65 64 29 2e 20 20 54 68  | line feed).  Th|
00000f30  69 73 20 69 73 20 6e 6f  72 6d 61 6c 6c 79 22 0d  |is is normally".|
00000f40  03 98 50 f1 22 73 65 74  20 74 6f 20 4f 4e 20 77  |..P."set to ON w|
00000f50  68 69 63 68 20 6d 65 61  6e 73 20 74 68 61 74 20  |hich means that |
00000f60  77 68 65 6e 20 61 20 43  52 20 63 6f 64 65 20 69  |when a CR code i|
00000f70  73 20 72 65 63 65 69 76  65 64 20 69 74 20 77 69  |s received it wi|
00000f80  6c 6c 20 61 70 70 65 6e  64 20 61 20 4c 46 22 0d  |ll append a LF".|
00000f90  03 a2 4f f1 22 63 6f 64  65 20 77 68 65 6e 20 74  |..O."code when t|
00000fa0  68 65 20 63 68 61 72 61  63 74 65 72 20 69 73 20  |he character is |
00000fb0  73 65 6e 74 20 74 6f 20  74 68 65 20 73 63 72 65  |sent to the scre|
00000fc0  65 6e 20 66 6f 72 63 69  6e 67 20 74 68 65 20 63  |en forcing the c|
00000fd0  75 72 73 6f 72 20 6f 6e  20 74 6f 20 61 22 0d 03  |ursor on to a"..|
00000fe0  ac 50 f1 22 6e 65 77 20  6c 69 6e 65 2e 20 20 53  |.P."new line.  S|
00000ff0  6f 6d 65 20 63 6f 6d 70  75 74 65 72 73 20 77 69  |ome computers wi|
00001000  6c 6c 20 73 65 6e 64 20  62 6f 74 68 20 61 20 43  |ll send both a C|
00001010  52 20 61 6e 64 20 61 20  4c 46 20 63 6f 64 65 20  |R and a LF code |
00001020  73 6f 20 74 68 65 20 6f  70 74 69 6f 6e 22 0d 03  |so the option"..|
00001030  b6 4b f1 22 69 73 20 74  68 65 72 65 20 74 6f 20  |.K."is there to |
00001040  72 65 6d 6f 76 65 20 74  68 65 20 4c 46 20 61 70  |remove the LF ap|
00001050  70 65 6e 64 65 64 20 62  79 20 74 68 65 20 45 6c  |pended by the El|
00001060  65 63 74 72 6f 6e 2e 20  20 50 72 65 73 73 69 6e  |ectron.  Pressin|
00001070  67 20 20 49 20 20 6f 72  22 0d 03 c0 3e f1 22 52  |g  I  or"...>."R|
00001080  45 54 55 52 4e 20 6f 6e  20 74 68 69 73 20 6f 70  |ETURN on this op|
00001090  74 69 6f 6e 20 74 6f 67  67 6c 65 73 20 62 65 74  |tion toggles bet|
000010a0  77 65 65 6e 20 43 52 2f  4c 46 20 4f 4e 20 61 6e  |ween CR/LF ON an|
000010b0  64 20 4f 46 46 2e 22 0d  03 ca 07 f1 22 22 0d 03  |d OFF.".....""..|
000010c0  d4 50 f1 22 4f 75 74 62  6f 75 6e 64 20 43 52 2f  |.P."Outbound CR/|
000010d0  4c 46 20 2d 20 74 68 69  73 20 69 73 20 6e 6f 72  |LF - this is nor|
000010e0  6d 61 6c 6c 79 20 73 65  74 20 74 6f 20 4f 4e 20  |mally set to ON |
000010f0  77 68 69 63 68 20 6d 65  61 6e 73 20 74 68 61 74  |which means that|
00001100  20 77 68 65 6e 20 73 65  6e 64 69 6e 67 22 0d 03  | when sending"..|
00001110  de 50 f1 22 61 20 43 52  20 63 6f 64 65 20 69 74  |.P."a CR code it|
00001120  20 77 69 6c 6c 20 61 70  70 65 6e 64 20 61 20 4c  | will append a L|
00001130  46 20 63 6f 64 65 20 77  68 65 6e 20 69 74 20 69  |F code when it i|
00001140  73 20 73 65 6e 74 20 74  6f 20 74 68 65 20 73 63  |s sent to the sc|
00001150  72 65 65 6e 2c 20 66 6f  72 63 69 6e 67 22 0d 03  |reen, forcing"..|
00001160  e8 50 f1 22 74 68 65 20  63 75 72 73 6f 72 20 6f  |.P."the cursor o|
00001170  6e 20 74 6f 20 61 20 6e  65 77 20 6c 69 6e 65 2e  |n to a new line.|
00001180  20 20 53 6f 6d 65 20 66  69 6c 65 73 20 6d 61 79  |  Some files may|
00001190  20 68 61 76 65 20 4c 46  20 63 6f 64 65 73 20 70  | have LF codes p|
000011a0  72 65 73 65 6e 74 20 73  6f 20 74 68 65 22 0d 03  |resent so the"..|
000011b0  f2 4f f1 22 6f 70 74 69  6f 6e 20 69 73 20 74 68  |.O."option is th|
000011c0  65 72 65 20 74 6f 20 72  65 6d 6f 76 65 20 74 68  |ere to remove th|
000011d0  65 20 6f 6e 65 20 61 70  70 65 6e 64 65 64 20 62  |e one appended b|
000011e0  79 20 74 68 65 20 45 6c  65 63 74 72 6f 6e 2e 20  |y the Electron. |
000011f0  20 50 72 65 73 73 69 6e  67 20 20 4f 22 0d 03 fc  | Pressing  O"...|
00001200  41 f1 22 6f 72 20 52 45  54 55 52 4e 20 6f 6e 20  |A."or RETURN on |
00001210  74 68 69 73 20 6f 70 74  69 6f 6e 20 74 6f 67 67  |this option togg|
00001220  6c 65 73 20 62 65 74 77  65 65 6e 20 43 52 2f 4c  |les between CR/L|
00001230  46 20 4f 4e 20 61 6e 64  20 4f 46 46 2e 22 0d 04  |F ON and OFF."..|
00001240  06 07 f1 22 22 0d 04 10  0c f1 22 4e 4f 54 45 53  |...""....."NOTES|
00001250  22 0d 04 1a 07 f1 22 22  0d 04 24 4f f1 22 56 69  |".....""..$O."Vi|
00001260  65 77 20 66 69 6c 65 73  20 64 6f 20 6e 6f 74 20  |ew files do not |
00001270  68 61 76 65 20 74 68 65  20 4c 46 20 63 6f 64 65  |have the LF code|
00001280  20 70 72 65 73 65 6e 74  20 73 6f 20 74 68 65 20  | present so the |
00001290  64 65 66 61 75 6c 74 20  73 65 74 74 69 6e 67 20  |default setting |
000012a0  69 73 20 4f 4e 2e 22 0d  04 2e 07 f1 22 22 0d 04  |is ON.".....""..|
000012b0  38 4d f1 22 54 68 65 20  49 20 61 6e 64 20 4f 20  |8M."The I and O |
000012c0  6f 70 74 69 6f 6e 20 6f  6e 6c 79 20 61 66 66 65  |option only affe|
000012d0  63 74 73 20 74 68 65 20  73 63 72 65 65 6e 20 61  |cts the screen a|
000012e0  6e 64 20 6e 6f 74 20 74  68 65 20 63 6f 6e 74 65  |nd not the conte|
000012f0  6e 74 73 20 6f 66 20 74  68 65 22 0d 04 42 0c f1  |nts of the"..B..|
00001300  22 66 69 6c 65 2e 22 0d  04 4c 07 f1 22 22 0d 04  |"file."..L..""..|
00001310  56 20 f1 22 28 51 29 20  52 65 74 75 72 6e 73 20  |V ."(Q) Returns |
00001320  79 6f 75 20 74 6f 20 42  41 53 49 43 2e 22 0d 04  |you to BASIC."..|
00001330  60 07 f1 22 22 0d 04 6a  33 f1 22 2a 20 43 4f 4d  |`..""..j3."* COM|
00001340  4d 41 4e 44 53 20 63 61  6e 20 62 65 20 69 73 73  |MANDS can be iss|
00001350  75 65 64 20 66 72 6f 6d  20 74 68 65 20 6d 61 69  |ued from the mai|
00001360  6e 20 6d 65 6e 75 2e 22  0d 04 74 07 f1 22 22 0d  |n menu."..t.."".|
00001370  04 7e 4c f1 22 54 6f 20  6f 76 65 72 2d 63 6f 6d  |.~L."To over-com|
00001380  65 20 74 68 65 20 70 72  6f 62 6c 65 6d 20 6f 66  |e the problem of|
00001390  20 73 65 6e 64 69 6e 67  20 42 41 53 49 43 20 70  | sending BASIC p|
000013a0  72 6f 67 72 61 6d 73 20  74 6f 20 6f 74 68 65 72  |rograms to other|
000013b0  20 63 6f 6d 70 75 74 65  72 73 22 0d 04 88 4e f1  | computers"...N.|
000013c0  22 73 69 6d 70 6c 79 20  2a 53 50 4f 4f 4c 20 74  |"simply *SPOOL t|
000013d0  68 65 20 70 72 6f 67 72  61 6d 20 61 6e 64 20 2a  |he program and *|
000013e0  45 58 45 43 20 69 74 20  62 61 63 6b 20 74 6f 20  |EXEC it back to |
000013f0  42 41 53 49 43 20 6f 6e  63 65 20 73 74 6f 72 65  |BASIC once store|
00001400  64 20 69 6e 20 74 68 65  22 0d 04 92 1c f1 22 64  |d in the"....."d|
00001410  65 73 74 69 6e 61 74 69  6f 6e 20 63 6f 6d 70 75  |estination compu|
00001420  74 65 72 2e 22 0d 04 9c  07 f1 22 22 0d 04 a6 4a  |ter.".....""...J|
00001430  f1 22 54 68 65 20 53 65  72 69 61 6c 20 69 6e 74  |."The Serial int|
00001440  65 72 66 61 63 65 20 69  73 20 73 65 74 20 74 6f  |erface is set to|
00001450  20 74 68 65 20 64 65 66  61 75 6c 74 20 73 65 74  | the default set|
00001460  74 69 6e 67 73 20 6f 66  20 74 68 65 20 45 6c 65  |tings of the Ele|
00001470  63 74 72 6f 6e 22 0d 04  b0 31 f1 22 43 6f 6d 70  |ctron"...1."Comp|
00001480  75 74 65 72 20 61 6e 64  20 73 68 6f 75 6c 64 6e  |uter and shouldn|
00001490  27 74 20 6e 65 65 64 20  74 6f 20 62 65 20 61 6c  |'t need to be al|
000014a0  74 65 72 65 64 3a 22 0d  04 ba 07 f1 22 22 0d 04  |tered:".....""..|
000014b0  c4 32 f1 22 53 74 61 72  74 20 42 69 74 73 20 20  |.2."Start Bits  |
000014c0  31 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |1               |
000014d0  53 74 6f 70 20 42 69 74  73 20 20 20 20 20 31 22  |Stop Bits     1"|
000014e0  0d 04 ce 35 f1 22 44 61  74 61 20 42 69 74 73 20  |...5."Data Bits |
000014f0  20 20 38 20 20 20 20 20  20 20 20 20 20 20 20 20  |  8             |
00001500  20 20 42 61 75 64 20 52  61 74 65 20 20 20 20 20  |  Baud Rate     |
00001510  39 36 30 30 22 0d 04 d8  07 f1 22 22 0d 04 e2 4f  |9600".....""...O|
00001520  f1 22 49 6e 20 74 68 65  20 75 6e 6c 69 6b 65 6c  |."In the unlikel|
00001530  79 20 65 76 65 6e 74 20  74 68 61 74 20 74 68 65  |y event that the|
00001540  79 20 64 6f 20 6e 65 65  64 20 63 68 61 6e 67 69  |y do need changi|
00001550  6e 67 2c 20 74 68 65 79  20 63 61 6e 20 62 65 20  |ng, they can be |
00001560  62 79 20 6c 69 73 74 69  6e 67 22 0d 04 ec 4b f1  |by listing"...K.|
00001570  22 6c 69 6e 65 20 4e 75  6d 62 65 72 73 20 35 33  |"line Numbers 53|
00001580  30 20 74 6f 20 35 39 30  20 61 6e 64 20 63 68 61  |0 to 590 and cha|
00001590  6e 67 69 6e 67 20 74 68  65 20 2a 46 58 20 76 61  |nging the *FX va|
000015a0  6c 75 65 73 2e 20 20 53  65 65 20 79 6f 75 72 20  |lues.  See your |
000015b0  52 53 34 32 33 22 0d 04  f6 46 f1 22 50 65 72 69  |RS423"...F."Peri|
000015c0  70 68 65 72 61 6c 20 55  73 65 72 20 47 75 69 64  |pheral User Guid|
000015d0  65 20 6f 72 20 74 68 65  20 42 42 43 20 55 73 65  |e or the BBC Use|
000015e0  72 20 47 75 69 64 65 20  66 6f 72 20 74 68 65 20  |r Guide for the |
000015f0  6e 65 77 20 76 61 6c 75  65 73 2e 22 0d 05 00 07  |new values."....|
00001600  f1 22 22 0d 05 0a 07 f1  22 22 0d 05 14 13 f1 22  |."".....""....."|
00001610  44 65 72 65 6b 20 57 61  6c 6b 65 72 22 0d 05 1e  |Derek Walker"...|
00001620  0d f1 22 4a 61 6e 27 39  34 22 0d 05 23 50 f1 22  |.."Jan'94"..#P."|
00001630  2a 2a 2a 2a 2a 2a 2a 2a  2a 2a 2a 2a 2a 2a 2a 2a  |****************|
*
00001670  2a 2a 2a 2a 2a 2a 2a 2a  2a 22 0d 05 28 05 e1 0d  |*********"..(...|
00001680  ff                                                |.|
00001681
EDL1.m0
EDL1.m1
EDL1.m2
EDL1.m4
EDL1.m5