Home » CEEFAX disks » telesoftware6.adl » 29-04-88/PR\INFO

29-04-88/PR\INFO

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 » telesoftware6.adl
Filename: 29-04-88/PR\INFO
Read OK:
File size: 1253 bytes
Load address: 0000
Exec address: 0000
Duplicates

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

File contents
 
                              - PAGE 1 -

                        PROCON 2.1 INSTRUCTIONS
                        -----------------------


(C) BJ MONKTON. 1987.



FOREWORD
--------

There are lots of dedicated roms for the BBC micro, however I have
often thought it would be nice if they also included certain commands
which I considered very useful to have at hand, this prompted me to
write some of my own routines which can be loaded into sideways ram or
put into a eprom.

There are no direct screen addressing, so the commands should work
okay with a shadow ram board fitted.

I hope you find these routines as useful as I have, I am currently
working on more routines to add to PROCON to bring it up to 16k so
keep tuned to BBC2 Tele-software for my next version.


THE COMMANDS IN PROCON 2.1
--------------------------

Note: Command names can be abbreviated with a full stop.
The space char should be used as the seperator in all commands.


*AMEND <fsp> <load addr> <exec addr>

This command allows you to amend the load and exec addresses of any
file on disk, files that are locked will be unlocked unless the L char
is added after the exec address.



*CONV <dec> or <&hex> or <%bin>

This command allows you to convert a number to dec/hex/binary
ie: *CONV 12 will display dec 12 as hex &000C and bin %00001100
    *CONV &FF will display hex &FF as dec 255 and bin %11111111
    *CONV %1111 will display dec 15 and hex &000F











                                                                      
     


                               - PAGE 2 -

*DKEY

This command will display the ascii/hex/binary value of a key pressed
on the keyboard, if one of the colour control keys are pressed when in
mode7 then all colours on the line will change to the colour being
pressed to indicate the selected colour, use escape to exit to basic.



*MSEED <start addr> <end addr> <byte>

This command will fill memory from the start address to the end
address with the byte selected.
ie: *MSEED 1900 6000 FF  will fill memory with FF from &1900 to &6000



*RCOPY <src> <des> <fsp> <fsp>

This command allows you to copy a file from the source disk to the
destination disk under a new name.
ie: *RCOPY 0 1 JIM FRED  will load the file named JIM from the source
disk 0 and save it to the destination disk 1 with the name FRED.

IF the source and destination drives are the same number you will be
prompted to change disks, you may wish to copy the file to the same
disk under a new name, in which case, just press a key when prompted.





































      

                               - PAGE 3 -
                            
*SCOPY <src> <des>          

This command is the main selective copier, if the optional source and
destination drive numbers are excluded the scopy routine will default
to drives 0 and 1 though these can be changed from within the program.

The disk with the files you wish to copy should be inserted in the
source drive before entering the *SCOPY command as scopy will load in
the file names from the source drive as soon as the command is
received, (saves time).

SCOPY OPTION KEYS

<Cursor keys> Use the cursor keys to position pointer.

<Space bar>   Use the space bar to select the file you wish to copy.
              The filename you have selected will then change colour
              from cyan to red.
           
<Cancel>      Pressing the C key or delete key will cancel the
              selected file changing the filename colour from red back
              to cyan.

<Tab>         Pressing the Tab key will start the copying proccess, as
              each file is copied the filename colour will change to
              green, when copying is completed, all file names will
              revert back to cyan colour and the pointer will return
              to the start position.

              If escape is pressed before copying is completed, all
              files will be closed and the program will be restarted.

<S>           Use the S key to set up the source drive number.

<D>           Use the D key to set up the destination drive number.

<N>           Pressing the N key will reload the file names from the
              source disk, needed after changing source drive number.

<Z>           Pressing the Z key will select all the file names on the
              source disk to be selected for copying, turning all the 
              file names from cyan to red.

<X>           Pressing the X key will cancel all the selected files
              and changing any red file names back to cyan.

<*>           Pressing the shift/asterisk will enable you to enter a
              mos command.









00000000  20 0d 20 20 20 20 20 20  20 20 20 20 20 20 20 20  | .              |
00000010  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000020  2d 20 50 41 47 45 20 31  20 2d 0d 0d 20 20 20 20  |- PAGE 1 -..    |
00000030  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000040  20 20 20 20 50 52 4f 43  4f 4e 20 32 2e 31 20 49  |    PROCON 2.1 I|
00000050  4e 53 54 52 55 43 54 49  4f 4e 53 0d 20 20 20 20  |NSTRUCTIONS.    |
00000060  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000070  20 20 20 20 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |    ------------|
00000080  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 0d 0d 0d 28 43  |-----------...(C|
00000090  29 20 42 4a 20 4d 4f 4e  4b 54 4f 4e 2e 20 31 39  |) BJ MONKTON. 19|
000000a0  38 37 2e 0d 0d 0d 0d 46  4f 52 45 57 4f 52 44 0d  |87.....FOREWORD.|
000000b0  2d 2d 2d 2d 2d 2d 2d 2d  0d 0d 54 68 65 72 65 20  |--------..There |
000000c0  61 72 65 20 6c 6f 74 73  20 6f 66 20 64 65 64 69  |are lots of dedi|
000000d0  63 61 74 65 64 20 72 6f  6d 73 20 66 6f 72 20 74  |cated roms for t|
000000e0  68 65 20 42 42 43 20 6d  69 63 72 6f 2c 20 68 6f  |he BBC micro, ho|
000000f0  77 65 76 65 72 20 49 20  68 61 76 65 0d 6f 66 74  |wever I have.oft|
00000100  65 6e 20 74 68 6f 75 67  68 74 20 69 74 20 77 6f  |en thought it wo|
00000110  75 6c 64 20 62 65 20 6e  69 63 65 20 69 66 20 74  |uld be nice if t|
00000120  68 65 79 20 61 6c 73 6f  20 69 6e 63 6c 75 64 65  |hey also include|
00000130  64 20 63 65 72 74 61 69  6e 20 63 6f 6d 6d 61 6e  |d certain comman|
00000140  64 73 0d 77 68 69 63 68  20 49 20 63 6f 6e 73 69  |ds.which I consi|
00000150  64 65 72 65 64 20 76 65  72 79 20 75 73 65 66 75  |dered very usefu|
00000160  6c 20 74 6f 20 68 61 76  65 20 61 74 20 68 61 6e  |l to have at han|
00000170  64 2c 20 74 68 69 73 20  70 72 6f 6d 70 74 65 64  |d, this prompted|
00000180  20 6d 65 20 74 6f 0d 77  72 69 74 65 20 73 6f 6d  | me to.write som|
00000190  65 20 6f 66 20 6d 79 20  6f 77 6e 20 72 6f 75 74  |e of my own rout|
000001a0  69 6e 65 73 20 77 68 69  63 68 20 63 61 6e 20 62  |ines which can b|
000001b0  65 20 6c 6f 61 64 65 64  20 69 6e 74 6f 20 73 69  |e loaded into si|
000001c0  64 65 77 61 79 73 20 72  61 6d 20 6f 72 0d 70 75  |deways ram or.pu|
000001d0  74 20 69 6e 74 6f 20 61  20 65 70 72 6f 6d 2e 0d  |t into a eprom..|
000001e0  0d 54 68 65 72 65 20 61  72 65 20 6e 6f 20 64 69  |.There are no di|
000001f0  72 65 63 74 20 73 63 72  65 65 6e 20 61 64 64 72  |rect screen addr|
00000200  65 73 73 69 6e 67 2c 20  73 6f 20 74 68 65 20 63  |essing, so the c|
00000210  6f 6d 6d 61 6e 64 73 20  73 68 6f 75 6c 64 20 77  |ommands should w|
00000220  6f 72 6b 0d 6f 6b 61 79  20 77 69 74 68 20 61 20  |ork.okay with a |
00000230  73 68 61 64 6f 77 20 72  61 6d 20 62 6f 61 72 64  |shadow ram board|
00000240  20 66 69 74 74 65 64 2e  0d 0d 49 20 68 6f 70 65  | fitted...I hope|
00000250  20 79 6f 75 20 66 69 6e  64 20 74 68 65 73 65 20  | you find these |
00000260  72 6f 75 74 69 6e 65 73  20 61 73 20 75 73 65 66  |routines as usef|
00000270  75 6c 20 61 73 20 49 20  68 61 76 65 2c 20 49 20  |ul as I have, I |
00000280  61 6d 20 63 75 72 72 65  6e 74 6c 79 0d 77 6f 72  |am currently.wor|
00000290  6b 69 6e 67 20 6f 6e 20  6d 6f 72 65 20 72 6f 75  |king on more rou|
000002a0  74 69 6e 65 73 20 74 6f  20 61 64 64 20 74 6f 20  |tines to add to |
000002b0  50 52 4f 43 4f 4e 20 74  6f 20 62 72 69 6e 67 20  |PROCON to bring |
000002c0  69 74 20 75 70 20 74 6f  20 31 36 6b 20 73 6f 0d  |it up to 16k so.|
000002d0  6b 65 65 70 20 74 75 6e  65 64 20 74 6f 20 42 42  |keep tuned to BB|
000002e0  43 32 20 54 65 6c 65 2d  73 6f 66 74 77 61 72 65  |C2 Tele-software|
000002f0  20 66 6f 72 20 6d 79 20  6e 65 78 74 20 76 65 72  | for my next ver|
00000300  73 69 6f 6e 2e 0d 0d 0d  54 48 45 20 43 4f 4d 4d  |sion....THE COMM|
00000310  41 4e 44 53 20 49 4e 20  50 52 4f 43 4f 4e 20 32  |ANDS IN PROCON 2|
00000320  2e 31 0d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |.1.-------------|
00000330  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 0d 0d 4e  |-------------..N|
00000340  6f 74 65 3a 20 43 6f 6d  6d 61 6e 64 20 6e 61 6d  |ote: Command nam|
00000350  65 73 20 63 61 6e 20 62  65 20 61 62 62 72 65 76  |es can be abbrev|
00000360  69 61 74 65 64 20 77 69  74 68 20 61 20 66 75 6c  |iated with a ful|
00000370  6c 20 73 74 6f 70 2e 0d  54 68 65 20 73 70 61 63  |l stop..The spac|
00000380  65 20 63 68 61 72 20 73  68 6f 75 6c 64 20 62 65  |e char should be|
00000390  20 75 73 65 64 20 61 73  20 74 68 65 20 73 65 70  | used as the sep|
000003a0  65 72 61 74 6f 72 20 69  6e 20 61 6c 6c 20 63 6f  |erator in all co|
000003b0  6d 6d 61 6e 64 73 2e 0d  0d 0d 2a 41 4d 45 4e 44  |mmands....*AMEND|
000003c0  20 3c 66 73 70 3e 20 3c  6c 6f 61 64 20 61 64 64  | <fsp> <load add|
000003d0  72 3e 20 3c 65 78 65 63  20 61 64 64 72 3e 0d 0d  |r> <exec addr>..|
000003e0  54 68 69 73 20 63 6f 6d  6d 61 6e 64 20 61 6c 6c  |This command all|
000003f0  6f 77 73 20 79 6f 75 20  74 6f 20 61 6d 65 6e 64  |ows you to amend|
00000400  20 74 68 65 20 6c 6f 61  64 20 61 6e 64 20 65 78  | the load and ex|
00000410  65 63 20 61 64 64 72 65  73 73 65 73 20 6f 66 20  |ec addresses of |
00000420  61 6e 79 0d 66 69 6c 65  20 6f 6e 20 64 69 73 6b  |any.file on disk|
00000430  2c 20 66 69 6c 65 73 20  74 68 61 74 20 61 72 65  |, files that are|
00000440  20 6c 6f 63 6b 65 64 20  77 69 6c 6c 20 62 65 20  | locked will be |
00000450  75 6e 6c 6f 63 6b 65 64  20 75 6e 6c 65 73 73 20  |unlocked unless |
00000460  74 68 65 20 4c 20 63 68  61 72 0d 69 73 20 61 64  |the L char.is ad|
00000470  64 65 64 20 61 66 74 65  72 20 74 68 65 20 65 78  |ded after the ex|
00000480  65 63 20 61 64 64 72 65  73 73 2e 0d 0d 0d 0d 2a  |ec address.....*|
00000490  43 4f 4e 56 20 3c 64 65  63 3e 20 6f 72 20 3c 26  |CONV <dec> or <&|
000004a0  68 65 78 3e 20 6f 72 20  3c 25 62 69 6e 3e 0d 0d  |hex> or <%bin>..|
000004b0  54 68 69 73 20 63 6f 6d  6d 61 6e 64 20 61 6c 6c  |This command all|
000004c0  6f 77 73 20 79 6f 75 20  74 6f 20 63 6f 6e 76 65  |ows you to conve|
000004d0  72 74 20 61 20 6e 75 6d  62 65 72 20 74 6f 20 64  |rt a number to d|
000004e0  65 63 2f 68 65 78 2f 62  69 6e 61 72 79 0d 69 65  |ec/hex/binary.ie|
000004f0  3a 20 2a 43 4f 4e 56 20  31 32 20 77 69 6c 6c 20  |: *CONV 12 will |
00000500  64 69 73 70 6c 61 79 20  64 65 63 20 31 32 20 61  |display dec 12 a|
00000510  73 20 68 65 78 20 26 30  30 30 43 20 61 6e 64 20  |s hex &000C and |
00000520  62 69 6e 20 25 30 30 30  30 31 31 30 30 0d 20 20  |bin %00001100.  |
00000530  20 20 2a 43 4f 4e 56 20  26 46 46 20 77 69 6c 6c  |  *CONV &FF will|
00000540  20 64 69 73 70 6c 61 79  20 68 65 78 20 26 46 46  | display hex &FF|
00000550  20 61 73 20 64 65 63 20  32 35 35 20 61 6e 64 20  | as dec 255 and |
00000560  62 69 6e 20 25 31 31 31  31 31 31 31 31 0d 20 20  |bin %11111111.  |
00000570  20 20 2a 43 4f 4e 56 20  25 31 31 31 31 20 77 69  |  *CONV %1111 wi|
00000580  6c 6c 20 64 69 73 70 6c  61 79 20 64 65 63 20 31  |ll display dec 1|
00000590  35 20 61 6e 64 20 68 65  78 20 26 30 30 30 46 0d  |5 and hex &000F.|
000005a0  0d 0d 0d 0d 0d 0d 0d 0d  0d 0d 0d 20 20 20 20 20  |...........     |
000005b0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
000005f0  20 0d 20 20 20 20 20 0d  0d 0d 20 20 20 20 20 20  | .     ...      |
00000600  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000610  20 20 20 20 20 20 20 20  20 2d 20 50 41 47 45 20  |         - PAGE |
00000620  32 20 2d 0d 0d 2a 44 4b  45 59 0d 0d 54 68 69 73  |2 -..*DKEY..This|
00000630  20 63 6f 6d 6d 61 6e 64  20 77 69 6c 6c 20 64 69  | command will di|
00000640  73 70 6c 61 79 20 74 68  65 20 61 73 63 69 69 2f  |splay the ascii/|
00000650  68 65 78 2f 62 69 6e 61  72 79 20 76 61 6c 75 65  |hex/binary value|
00000660  20 6f 66 20 61 20 6b 65  79 20 70 72 65 73 73 65  | of a key presse|
00000670  64 0d 6f 6e 20 74 68 65  20 6b 65 79 62 6f 61 72  |d.on the keyboar|
00000680  64 2c 20 69 66 20 6f 6e  65 20 6f 66 20 74 68 65  |d, if one of the|
00000690  20 63 6f 6c 6f 75 72 20  63 6f 6e 74 72 6f 6c 20  | colour control |
000006a0  6b 65 79 73 20 61 72 65  20 70 72 65 73 73 65 64  |keys are pressed|
000006b0  20 77 68 65 6e 20 69 6e  0d 6d 6f 64 65 37 20 74  | when in.mode7 t|
000006c0  68 65 6e 20 61 6c 6c 20  63 6f 6c 6f 75 72 73 20  |hen all colours |
000006d0  6f 6e 20 74 68 65 20 6c  69 6e 65 20 77 69 6c 6c  |on the line will|
000006e0  20 63 68 61 6e 67 65 20  74 6f 20 74 68 65 20 63  | change to the c|
000006f0  6f 6c 6f 75 72 20 62 65  69 6e 67 0d 70 72 65 73  |olour being.pres|
00000700  73 65 64 20 74 6f 20 69  6e 64 69 63 61 74 65 20  |sed to indicate |
00000710  74 68 65 20 73 65 6c 65  63 74 65 64 20 63 6f 6c  |the selected col|
00000720  6f 75 72 2c 20 75 73 65  20 65 73 63 61 70 65 20  |our, use escape |
00000730  74 6f 20 65 78 69 74 20  74 6f 20 62 61 73 69 63  |to exit to basic|
00000740  2e 0d 0d 0d 0d 2a 4d 53  45 45 44 20 3c 73 74 61  |.....*MSEED <sta|
00000750  72 74 20 61 64 64 72 3e  20 3c 65 6e 64 20 61 64  |rt addr> <end ad|
00000760  64 72 3e 20 3c 62 79 74  65 3e 0d 0d 54 68 69 73  |dr> <byte>..This|
00000770  20 63 6f 6d 6d 61 6e 64  20 77 69 6c 6c 20 66 69  | command will fi|
00000780  6c 6c 20 6d 65 6d 6f 72  79 20 66 72 6f 6d 20 74  |ll memory from t|
00000790  68 65 20 73 74 61 72 74  20 61 64 64 72 65 73 73  |he start address|
000007a0  20 74 6f 20 74 68 65 20  65 6e 64 0d 61 64 64 72  | to the end.addr|
000007b0  65 73 73 20 77 69 74 68  20 74 68 65 20 62 79 74  |ess with the byt|
000007c0  65 20 73 65 6c 65 63 74  65 64 2e 0d 69 65 3a 20  |e selected..ie: |
000007d0  2a 4d 53 45 45 44 20 31  39 30 30 20 36 30 30 30  |*MSEED 1900 6000|
000007e0  20 46 46 20 20 77 69 6c  6c 20 66 69 6c 6c 20 6d  | FF  will fill m|
000007f0  65 6d 6f 72 79 20 77 69  74 68 20 46 46 20 66 72  |emory with FF fr|
00000800  6f 6d 20 26 31 39 30 30  20 74 6f 20 26 36 30 30  |om &1900 to &600|
00000810  30 0d 0d 0d 0d 2a 52 43  4f 50 59 20 3c 73 72 63  |0....*RCOPY <src|
00000820  3e 20 3c 64 65 73 3e 20  3c 66 73 70 3e 20 3c 66  |> <des> <fsp> <f|
00000830  73 70 3e 0d 0d 54 68 69  73 20 63 6f 6d 6d 61 6e  |sp>..This comman|
00000840  64 20 61 6c 6c 6f 77 73  20 79 6f 75 20 74 6f 20  |d allows you to |
00000850  63 6f 70 79 20 61 20 66  69 6c 65 20 66 72 6f 6d  |copy a file from|
00000860  20 74 68 65 20 73 6f 75  72 63 65 20 64 69 73 6b  | the source disk|
00000870  20 74 6f 20 74 68 65 0d  64 65 73 74 69 6e 61 74  | to the.destinat|
00000880  69 6f 6e 20 64 69 73 6b  20 75 6e 64 65 72 20 61  |ion disk under a|
00000890  20 6e 65 77 20 6e 61 6d  65 2e 0d 69 65 3a 20 2a  | new name..ie: *|
000008a0  52 43 4f 50 59 20 30 20  31 20 4a 49 4d 20 46 52  |RCOPY 0 1 JIM FR|
000008b0  45 44 20 20 77 69 6c 6c  20 6c 6f 61 64 20 74 68  |ED  will load th|
000008c0  65 20 66 69 6c 65 20 6e  61 6d 65 64 20 4a 49 4d  |e file named JIM|
000008d0  20 66 72 6f 6d 20 74 68  65 20 73 6f 75 72 63 65  | from the source|
000008e0  0d 64 69 73 6b 20 30 20  61 6e 64 20 73 61 76 65  |.disk 0 and save|
000008f0  20 69 74 20 74 6f 20 74  68 65 20 64 65 73 74 69  | it to the desti|
00000900  6e 61 74 69 6f 6e 20 64  69 73 6b 20 31 20 77 69  |nation disk 1 wi|
00000910  74 68 20 74 68 65 20 6e  61 6d 65 20 46 52 45 44  |th the name FRED|
00000920  2e 0d 0d 49 46 20 74 68  65 20 73 6f 75 72 63 65  |...IF the source|
00000930  20 61 6e 64 20 64 65 73  74 69 6e 61 74 69 6f 6e  | and destination|
00000940  20 64 72 69 76 65 73 20  61 72 65 20 74 68 65 20  | drives are the |
00000950  73 61 6d 65 20 6e 75 6d  62 65 72 20 79 6f 75 20  |same number you |
00000960  77 69 6c 6c 20 62 65 0d  70 72 6f 6d 70 74 65 64  |will be.prompted|
00000970  20 74 6f 20 63 68 61 6e  67 65 20 64 69 73 6b 73  | to change disks|
00000980  2c 20 79 6f 75 20 6d 61  79 20 77 69 73 68 20 74  |, you may wish t|
00000990  6f 20 63 6f 70 79 20 74  68 65 20 66 69 6c 65 20  |o copy the file |
000009a0  74 6f 20 74 68 65 20 73  61 6d 65 0d 64 69 73 6b  |to the same.disk|
000009b0  20 75 6e 64 65 72 20 61  20 6e 65 77 20 6e 61 6d  | under a new nam|
000009c0  65 2c 20 69 6e 20 77 68  69 63 68 20 63 61 73 65  |e, in which case|
000009d0  2c 20 6a 75 73 74 20 70  72 65 73 73 20 61 20 6b  |, just press a k|
000009e0  65 79 20 77 68 65 6e 20  70 72 6f 6d 70 74 65 64  |ey when prompted|
000009f0  2e 0d 0d 0d 0d 0d 0d 0d  0d 0d 0d 0d 0d 0d 0d 0d  |................|
00000a00  0d 0d 0d 0d 0d 0d 0d 0d  0d 0d 0d 0d 0d 0d 0d 0d  |................|
00000a10  0d 0d 0d 0d 0d 0d 0d 20  20 20 20 20 20 0d 0d 20  |.......      .. |
00000a20  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000a30  20 20 20 20 20 20 20 20  20 20 20 20 20 20 2d 20  |              - |
00000a40  50 41 47 45 20 33 20 2d  0d 20 20 20 20 20 20 20  |PAGE 3 -.       |
00000a50  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000a60  20 20 20 20 20 0d 2a 53  43 4f 50 59 20 3c 73 72  |     .*SCOPY <sr|
00000a70  63 3e 20 3c 64 65 73 3e  20 20 20 20 20 20 20 20  |c> <des>        |
00000a80  20 20 0d 0d 54 68 69 73  20 63 6f 6d 6d 61 6e 64  |  ..This command|
00000a90  20 69 73 20 74 68 65 20  6d 61 69 6e 20 73 65 6c  | is the main sel|
00000aa0  65 63 74 69 76 65 20 63  6f 70 69 65 72 2c 20 69  |ective copier, i|
00000ab0  66 20 74 68 65 20 6f 70  74 69 6f 6e 61 6c 20 73  |f the optional s|
00000ac0  6f 75 72 63 65 20 61 6e  64 0d 64 65 73 74 69 6e  |ource and.destin|
00000ad0  61 74 69 6f 6e 20 64 72  69 76 65 20 6e 75 6d 62  |ation drive numb|
00000ae0  65 72 73 20 61 72 65 20  65 78 63 6c 75 64 65 64  |ers are excluded|
00000af0  20 74 68 65 20 73 63 6f  70 79 20 72 6f 75 74 69  | the scopy routi|
00000b00  6e 65 20 77 69 6c 6c 20  64 65 66 61 75 6c 74 0d  |ne will default.|
00000b10  74 6f 20 64 72 69 76 65  73 20 30 20 61 6e 64 20  |to drives 0 and |
00000b20  31 20 74 68 6f 75 67 68  20 74 68 65 73 65 20 63  |1 though these c|
00000b30  61 6e 20 62 65 20 63 68  61 6e 67 65 64 20 66 72  |an be changed fr|
00000b40  6f 6d 20 77 69 74 68 69  6e 20 74 68 65 20 70 72  |om within the pr|
00000b50  6f 67 72 61 6d 2e 0d 0d  54 68 65 20 64 69 73 6b  |ogram...The disk|
00000b60  20 77 69 74 68 20 74 68  65 20 66 69 6c 65 73 20  | with the files |
00000b70  79 6f 75 20 77 69 73 68  20 74 6f 20 63 6f 70 79  |you wish to copy|
00000b80  20 73 68 6f 75 6c 64 20  62 65 20 69 6e 73 65 72  | should be inser|
00000b90  74 65 64 20 69 6e 20 74  68 65 0d 73 6f 75 72 63  |ted in the.sourc|
00000ba0  65 20 64 72 69 76 65 20  62 65 66 6f 72 65 20 65  |e drive before e|
00000bb0  6e 74 65 72 69 6e 67 20  74 68 65 20 2a 53 43 4f  |ntering the *SCO|
00000bc0  50 59 20 63 6f 6d 6d 61  6e 64 20 61 73 20 73 63  |PY command as sc|
00000bd0  6f 70 79 20 77 69 6c 6c  20 6c 6f 61 64 20 69 6e  |opy will load in|
00000be0  0d 74 68 65 20 66 69 6c  65 20 6e 61 6d 65 73 20  |.the file names |
00000bf0  66 72 6f 6d 20 74 68 65  20 73 6f 75 72 63 65 20  |from the source |
00000c00  64 72 69 76 65 20 61 73  20 73 6f 6f 6e 20 61 73  |drive as soon as|
00000c10  20 74 68 65 20 63 6f 6d  6d 61 6e 64 20 69 73 0d  | the command is.|
00000c20  72 65 63 65 69 76 65 64  2c 20 28 73 61 76 65 73  |received, (saves|
00000c30  20 74 69 6d 65 29 2e 0d  0d 53 43 4f 50 59 20 4f  | time)...SCOPY O|
00000c40  50 54 49 4f 4e 20 4b 45  59 53 0d 0d 3c 43 75 72  |PTION KEYS..<Cur|
00000c50  73 6f 72 20 6b 65 79 73  3e 20 55 73 65 20 74 68  |sor keys> Use th|
00000c60  65 20 63 75 72 73 6f 72  20 6b 65 79 73 20 74 6f  |e cursor keys to|
00000c70  20 70 6f 73 69 74 69 6f  6e 20 70 6f 69 6e 74 65  | position pointe|
00000c80  72 2e 0d 0d 3c 53 70 61  63 65 20 62 61 72 3e 20  |r...<Space bar> |
00000c90  20 20 55 73 65 20 74 68  65 20 73 70 61 63 65 20  |  Use the space |
00000ca0  62 61 72 20 74 6f 20 73  65 6c 65 63 74 20 74 68  |bar to select th|
00000cb0  65 20 66 69 6c 65 20 79  6f 75 20 77 69 73 68 20  |e file you wish |
00000cc0  74 6f 20 63 6f 70 79 2e  0d 20 20 20 20 20 20 20  |to copy..       |
00000cd0  20 20 20 20 20 20 20 54  68 65 20 66 69 6c 65 6e  |       The filen|
00000ce0  61 6d 65 20 79 6f 75 20  68 61 76 65 20 73 65 6c  |ame you have sel|
00000cf0  65 63 74 65 64 20 77 69  6c 6c 20 74 68 65 6e 20  |ected will then |
00000d00  63 68 61 6e 67 65 20 63  6f 6c 6f 75 72 0d 20 20  |change colour.  |
00000d10  20 20 20 20 20 20 20 20  20 20 20 20 66 72 6f 6d  |            from|
00000d20  20 63 79 61 6e 20 74 6f  20 72 65 64 2e 0d 20 20  | cyan to red..  |
00000d30  20 20 20 20 20 20 20 20  20 0d 3c 43 61 6e 63 65  |         .<Cance|
00000d40  6c 3e 20 20 20 20 20 20  50 72 65 73 73 69 6e 67  |l>      Pressing|
00000d50  20 74 68 65 20 43 20 6b  65 79 20 6f 72 20 64 65  | the C key or de|
00000d60  6c 65 74 65 20 6b 65 79  20 77 69 6c 6c 20 63 61  |lete key will ca|
00000d70  6e 63 65 6c 20 74 68 65  0d 20 20 20 20 20 20 20  |ncel the.       |
00000d80  20 20 20 20 20 20 20 73  65 6c 65 63 74 65 64 20  |       selected |
00000d90  66 69 6c 65 20 63 68 61  6e 67 69 6e 67 20 74 68  |file changing th|
00000da0  65 20 66 69 6c 65 6e 61  6d 65 20 63 6f 6c 6f 75  |e filename colou|
00000db0  72 20 66 72 6f 6d 20 72  65 64 20 62 61 63 6b 0d  |r from red back.|
00000dc0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 74 6f  |              to|
00000dd0  20 63 79 61 6e 2e 0d 0d  3c 54 61 62 3e 20 20 20  | cyan...<Tab>   |
00000de0  20 20 20 20 20 20 50 72  65 73 73 69 6e 67 20 74  |      Pressing t|
00000df0  68 65 20 54 61 62 20 6b  65 79 20 77 69 6c 6c 20  |he Tab key will |
00000e00  73 74 61 72 74 20 74 68  65 20 63 6f 70 79 69 6e  |start the copyin|
00000e10  67 20 70 72 6f 63 63 65  73 73 2c 20 61 73 0d 20  |g proccess, as. |
00000e20  20 20 20 20 20 20 20 20  20 20 20 20 20 65 61 63  |             eac|
00000e30  68 20 66 69 6c 65 20 69  73 20 63 6f 70 69 65 64  |h file is copied|
00000e40  20 74 68 65 20 66 69 6c  65 6e 61 6d 65 20 63 6f  | the filename co|
00000e50  6c 6f 75 72 20 77 69 6c  6c 20 63 68 61 6e 67 65  |lour will change|
00000e60  20 74 6f 0d 20 20 20 20  20 20 20 20 20 20 20 20  | to.            |
00000e70  20 20 67 72 65 65 6e 2c  20 77 68 65 6e 20 63 6f  |  green, when co|
00000e80  70 79 69 6e 67 20 69 73  20 63 6f 6d 70 6c 65 74  |pying is complet|
00000e90  65 64 2c 20 61 6c 6c 20  66 69 6c 65 20 6e 61 6d  |ed, all file nam|
00000ea0  65 73 20 77 69 6c 6c 0d  20 20 20 20 20 20 20 20  |es will.        |
00000eb0  20 20 20 20 20 20 72 65  76 65 72 74 20 62 61 63  |      revert bac|
00000ec0  6b 20 74 6f 20 63 79 61  6e 20 63 6f 6c 6f 75 72  |k to cyan colour|
00000ed0  20 61 6e 64 20 74 68 65  20 70 6f 69 6e 74 65 72  | and the pointer|
00000ee0  20 77 69 6c 6c 20 72 65  74 75 72 6e 0d 20 20 20  | will return.   |
00000ef0  20 20 20 20 20 20 20 20  20 20 20 74 6f 20 74 68  |           to th|
00000f00  65 20 73 74 61 72 74 20  70 6f 73 69 74 69 6f 6e  |e start position|
00000f10  2e 0d 0d 20 20 20 20 20  20 20 20 20 20 20 20 20  |...             |
00000f20  20 49 66 20 65 73 63 61  70 65 20 69 73 20 70 72  | If escape is pr|
00000f30  65 73 73 65 64 20 62 65  66 6f 72 65 20 63 6f 70  |essed before cop|
00000f40  79 69 6e 67 20 69 73 20  63 6f 6d 70 6c 65 74 65  |ying is complete|
00000f50  64 2c 20 61 6c 6c 0d 20  20 20 20 20 20 20 20 20  |d, all.         |
00000f60  20 20 20 20 20 66 69 6c  65 73 20 77 69 6c 6c 20  |     files will |
00000f70  62 65 20 63 6c 6f 73 65  64 20 61 6e 64 20 74 68  |be closed and th|
00000f80  65 20 70 72 6f 67 72 61  6d 20 77 69 6c 6c 20 62  |e program will b|
00000f90  65 20 72 65 73 74 61 72  74 65 64 2e 0d 0d 3c 53  |e restarted...<S|
00000fa0  3e 20 20 20 20 20 20 20  20 20 20 20 55 73 65 20  |>           Use |
00000fb0  74 68 65 20 53 20 6b 65  79 20 74 6f 20 73 65 74  |the S key to set|
00000fc0  20 75 70 20 74 68 65 20  73 6f 75 72 63 65 20 64  | up the source d|
00000fd0  72 69 76 65 20 6e 75 6d  62 65 72 2e 0d 0d 3c 44  |rive number...<D|
00000fe0  3e 20 20 20 20 20 20 20  20 20 20 20 55 73 65 20  |>           Use |
00000ff0  74 68 65 20 44 20 6b 65  79 20 74 6f 20 73 65 74  |the D key to set|
00001000  20 75 70 20 74 68 65 20  64 65 73 74 69 6e 61 74  | up the destinat|
00001010  69 6f 6e 20 64 72 69 76  65 20 6e 75 6d 62 65 72  |ion drive number|
00001020  2e 0d 0d 3c 4e 3e 20 20  20 20 20 20 20 20 20 20  |...<N>          |
00001030  20 50 72 65 73 73 69 6e  67 20 74 68 65 20 4e 20  | Pressing the N |
00001040  6b 65 79 20 77 69 6c 6c  20 72 65 6c 6f 61 64 20  |key will reload |
00001050  74 68 65 20 66 69 6c 65  20 6e 61 6d 65 73 20 66  |the file names f|
00001060  72 6f 6d 20 74 68 65 0d  20 20 20 20 20 20 20 20  |rom the.        |
00001070  20 20 20 20 20 20 73 6f  75 72 63 65 20 64 69 73  |      source dis|
00001080  6b 2c 20 6e 65 65 64 65  64 20 61 66 74 65 72 20  |k, needed after |
00001090  63 68 61 6e 67 69 6e 67  20 73 6f 75 72 63 65 20  |changing source |
000010a0  64 72 69 76 65 20 6e 75  6d 62 65 72 2e 0d 0d 3c  |drive number...<|
000010b0  5a 3e 20 20 20 20 20 20  20 20 20 20 20 50 72 65  |Z>           Pre|
000010c0  73 73 69 6e 67 20 74 68  65 20 5a 20 6b 65 79 20  |ssing the Z key |
000010d0  77 69 6c 6c 20 73 65 6c  65 63 74 20 61 6c 6c 20  |will select all |
000010e0  74 68 65 20 66 69 6c 65  20 6e 61 6d 65 73 20 6f  |the file names o|
000010f0  6e 20 74 68 65 0d 20 20  20 20 20 20 20 20 20 20  |n the.          |
00001100  20 20 20 20 73 6f 75 72  63 65 20 64 69 73 6b 20  |    source disk |
00001110  74 6f 20 62 65 20 73 65  6c 65 63 74 65 64 20 66  |to be selected f|
00001120  6f 72 20 63 6f 70 79 69  6e 67 2c 20 74 75 72 6e  |or copying, turn|
00001130  69 6e 67 20 61 6c 6c 20  74 68 65 20 0d 20 20 20  |ing all the .   |
00001140  20 20 20 20 20 20 20 20  20 20 20 66 69 6c 65 20  |           file |
00001150  6e 61 6d 65 73 20 66 72  6f 6d 20 63 79 61 6e 20  |names from cyan |
00001160  74 6f 20 72 65 64 2e 0d  0d 3c 58 3e 20 20 20 20  |to red...<X>    |
00001170  20 20 20 20 20 20 20 50  72 65 73 73 69 6e 67 20  |       Pressing |
00001180  74 68 65 20 58 20 6b 65  79 20 77 69 6c 6c 20 63  |the X key will c|
00001190  61 6e 63 65 6c 20 61 6c  6c 20 74 68 65 20 73 65  |ancel all the se|
000011a0  6c 65 63 74 65 64 20 66  69 6c 65 73 0d 20 20 20  |lected files.   |
000011b0  20 20 20 20 20 20 20 20  20 20 20 61 6e 64 20 63  |           and c|
000011c0  68 61 6e 67 69 6e 67 20  61 6e 79 20 72 65 64 20  |hanging any red |
000011d0  66 69 6c 65 20 6e 61 6d  65 73 20 62 61 63 6b 20  |file names back |
000011e0  74 6f 20 63 79 61 6e 2e  0d 0d 3c 2a 3e 20 20 20  |to cyan...<*>   |
000011f0  20 20 20 20 20 20 20 20  50 72 65 73 73 69 6e 67  |        Pressing|
00001200  20 74 68 65 20 73 68 69  66 74 2f 61 73 74 65 72  | the shift/aster|
00001210  69 73 6b 20 77 69 6c 6c  20 65 6e 61 62 6c 65 20  |isk will enable |
00001220  79 6f 75 20 74 6f 20 65  6e 74 65 72 20 61 0d 20  |you to enter a. |
00001230  20 20 20 20 20 20 20 20  20 20 20 20 20 6d 6f 73  |             mos|
00001240  20 63 6f 6d 6d 61 6e 64  2e 0d 0d 0d 0d 0d 0d 0d  | command........|
00001250  0d 0d 0d                                          |...|
00001253
29-04-88/PR\INFO.m0
29-04-88/PR\INFO.m1
29-04-88/PR\INFO.m2
29-04-88/PR\INFO.m4
29-04-88/PR\INFO.m5