Home » CEEFAX disks » telesoftware12.adl » 04-02-89/Ptest\BAT

04-02-89/Ptest\BAT

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 » telesoftware12.adl
Filename: 04-02-89/Ptest\BAT
Read OK:
File size: 12CF bytes
Load address: 0000
Exec address: 0000
File contents
echo off
rem *******************************************************************
rem * PTEST.BAT - A program to test PSTAT.EXE and show it's operation *
rem *              (c) Colin J Smith September 1988                   *
rem *******************************************************************

cls
echo ��������������Batch test program of PSTAT.EXE (c) CJS '88 Ver 1.0������������Ĵ

echo �����check all 3 possible parallel printer ports - LPT1[PRN], LPT2 & LPT3����Ŀ
pstat 1
if ERRORLEVEL==3 goto noprt1
if ERRORLEVEL==2 goto noport1
if ERRORLEVEL==1 goto prton1
echo �          A printer is connected to port LPT1 and is switched OFF            �
goto port2
:prton1
echo �          A printer is connected to port LPT1 and is switched ON             �
goto port2
:noprt1
echo �                A printer is NOT connected to port LPT1
goto port2                                                                         �
:noport1
echo �                Port LPT1 is NOT available to the system                     �

:port2
pstat 2
if ERRORLEVEL==3 goto noprt2
if ERRORLEVEL==2 goto noport2
if ERRORLEVEL==1 goto prton2
echo �          A printer is connected to port LPT2 and is switched OFF            �
goto port3
:prton2
echo �          A printer is connected to port LPT2 and is switched ON             �
goto port3
:noprt2
echo �                A printer is NOT connected to port LPT2                      �
goto port3
:noport2
echo �                Port LPT2 is NOT available to the system                     �

:port3
pstat 3
if ERRORLEVEL==3 goto noprt3
if ERRORLEVEL==2 goto noport3
if ERRORLEVEL==1 goto prton3
echo �          A printer is connected to port LPT3 and is switched OFF            �
goto check
:prton3
echo �          A printer is connected to port LPT3 and is switched ON             �
goto check
:noprt3
echo �                A printer is NOT connected to port LPT3                      �
goto check
:noport3
echo �                Port LPT3 is NOT available to the system                     �

:check
echo ��������check if there is a printer on port LPT1[PRN] & switched ON����������Ŀ
pstat 1
if ERRORLEVEL==3 goto chkcon
if ERRORLEVEL==2 goto chkport
if ERRORLEVEL==1 goto opt1
echo �    There is a printer connected to port LPT1 but switch it on please!       �
goto end
:chkcon
echo �    There is NO printer connected to port LPT1 so connect one please!        �
goto end
:chkport
echo �           What a dud computer! - you haven't got a port LPT1                �
goto end

:opt1
echo �                   O.K. - printer connected and switched ON                  �
echo ��������check the status of the printer using parallel port LPT1[PRN]��������Ŀ
pstat 1 1
echo �                             Device time out?                                �
if ERRORLEVEL==1 goto devyes
echo �                               -[  N O  ]-                                   �
goto opt2
:devyes
echo �                               -[ Y E S ]-                                   �

:opt2
pstat 1 2
echo �                                I/O error?                                   �
if ERRORLEVEL==1 goto ioyes
echo �                               -[  N O  ]- printer ON-LINE                   �
goto opt3
:ioyes
echo �                               -[ Y E S ]- printer OFF-LINE                  �

:opt3
pstat 1 3
echo �                                Selected?                                    �
if ERRORLEVEL==1 goto selyes
echo �                               -[  N O  ]-                                   �
goto opt4
:selyes
echo �                               -[ Y E S ]-                                   �

:opt4
pstat 1 4
echo �                              Out of paper?                                  �
if ERRORLEVEL==1 goto outpapyes
echo �                               -[  N O  ]-                                   �
goto opt5
:outpapyes
echo �                               -[ Y E S ]- please insert some more paper!    �

:opt5
pstat 1 5
echo �                               Acknowledge?                                  �
if ERRORLEVEL==1 goto ackyes
echo �                               -[  N O  ]-                                   �
goto opt6
:ackyes
echo �                               -[ Y E S ]-                                   �

:opt6
pstat 1 6
echo �                                Not busy?                                    �
if ERRORLEVEL==1 goto busyes
echo �                               -[  N O  ]-                                   �
goto end
:busyes
echo �                               -[ Y E S ]- printer not busy doing anything   �
:end
echo �������������������������������������������������������������������������������

00000000  65 63 68 6f 20 6f 66 66  0d 0a 72 65 6d 20 2a 2a  |echo off..rem **|
00000010  2a 2a 2a 2a 2a 2a 2a 2a  2a 2a 2a 2a 2a 2a 2a 2a  |****************|
*
00000050  2a 0d 0a 72 65 6d 20 2a  20 50 54 45 53 54 2e 42  |*..rem * PTEST.B|
00000060  41 54 20 2d 20 41 20 70  72 6f 67 72 61 6d 20 74  |AT - A program t|
00000070  6f 20 74 65 73 74 20 50  53 54 41 54 2e 45 58 45  |o test PSTAT.EXE|
00000080  20 61 6e 64 20 73 68 6f  77 20 69 74 27 73 20 6f  | and show it's o|
00000090  70 65 72 61 74 69 6f 6e  20 2a 0d 0a 72 65 6d 20  |peration *..rem |
000000a0  2a 20 20 20 20 20 20 20  20 20 20 20 20 20 20 28  |*              (|
000000b0  63 29 20 43 6f 6c 69 6e  20 4a 20 53 6d 69 74 68  |c) Colin J Smith|
000000c0  20 53 65 70 74 65 6d 62  65 72 20 31 39 38 38 20  | September 1988 |
000000d0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000000e0  20 20 2a 0d 0a 72 65 6d  20 2a 2a 2a 2a 2a 2a 2a  |  *..rem *******|
000000f0  2a 2a 2a 2a 2a 2a 2a 2a  2a 2a 2a 2a 2a 2a 2a 2a  |****************|
*
00000120  2a 2a 2a 2a 2a 2a 2a 2a  2a 2a 2a 2a 0d 0a 0d 0a  |************....|
00000130  63 6c 73 0d 0a 65 63 68  6f 20 c3 c4 c4 c4 c4 c4  |cls..echo ......|
00000140  c4 c4 c4 c4 c4 c4 c4 c4  42 61 74 63 68 20 74 65  |........Batch te|
00000150  73 74 20 70 72 6f 67 72  61 6d 20 6f 66 20 50 53  |st program of PS|
00000160  54 41 54 2e 45 58 45 20  28 63 29 20 43 4a 53 20  |TAT.EXE (c) CJS |
00000170  27 38 38 20 56 65 72 20  31 2e 30 c4 c4 c4 c4 c4  |'88 Ver 1.0.....|
00000180  c4 c4 c4 c4 c4 c4 c4 c4  b4 0d 0a 0d 0a 65 63 68  |.............ech|
00000190  6f 20 da c4 c4 c4 c4 63  68 65 63 6b 20 61 6c 6c  |o .....check all|
000001a0  20 33 20 70 6f 73 73 69  62 6c 65 20 70 61 72 61  | 3 possible para|
000001b0  6c 6c 65 6c 20 70 72 69  6e 74 65 72 20 70 6f 72  |llel printer por|
000001c0  74 73 20 2d 20 4c 50 54  31 5b 50 52 4e 5d 2c 20  |ts - LPT1[PRN], |
000001d0  4c 50 54 32 20 26 20 4c  50 54 33 c4 c4 c4 c4 c4  |LPT2 & LPT3.....|
000001e0  bf 0d 0a 70 73 74 61 74  20 31 0d 0a 69 66 20 45  |...pstat 1..if E|
000001f0  52 52 4f 52 4c 45 56 45  4c 3d 3d 33 20 67 6f 74  |RRORLEVEL==3 got|
00000200  6f 20 6e 6f 70 72 74 31  0d 0a 69 66 20 45 52 52  |o noprt1..if ERR|
00000210  4f 52 4c 45 56 45 4c 3d  3d 32 20 67 6f 74 6f 20  |ORLEVEL==2 goto |
00000220  6e 6f 70 6f 72 74 31 0d  0a 69 66 20 45 52 52 4f  |noport1..if ERRO|
00000230  52 4c 45 56 45 4c 3d 3d  31 20 67 6f 74 6f 20 70  |RLEVEL==1 goto p|
00000240  72 74 6f 6e 31 0d 0a 65  63 68 6f 20 b3 20 20 20  |rton1..echo .   |
00000250  20 20 20 20 20 20 20 41  20 70 72 69 6e 74 65 72  |       A printer|
00000260  20 69 73 20 63 6f 6e 6e  65 63 74 65 64 20 74 6f  | is connected to|
00000270  20 70 6f 72 74 20 4c 50  54 31 20 61 6e 64 20 69  | port LPT1 and i|
00000280  73 20 73 77 69 74 63 68  65 64 20 4f 46 46 20 20  |s switched OFF  |
00000290  20 20 20 20 20 20 20 20  20 20 b3 0d 0a 67 6f 74  |          ...got|
000002a0  6f 20 70 6f 72 74 32 0d  0a 3a 70 72 74 6f 6e 31  |o port2..:prton1|
000002b0  0d 0a 65 63 68 6f 20 b3  20 20 20 20 20 20 20 20  |..echo .        |
000002c0  20 20 41 20 70 72 69 6e  74 65 72 20 69 73 20 63  |  A printer is c|
000002d0  6f 6e 6e 65 63 74 65 64  20 74 6f 20 70 6f 72 74  |onnected to port|
000002e0  20 4c 50 54 31 20 61 6e  64 20 69 73 20 73 77 69  | LPT1 and is swi|
000002f0  74 63 68 65 64 20 4f 4e  20 20 20 20 20 20 20 20  |tched ON        |
00000300  20 20 20 20 20 b3 0d 0a  67 6f 74 6f 20 70 6f 72  |     ...goto por|
00000310  74 32 0d 0a 3a 6e 6f 70  72 74 31 0d 0a 65 63 68  |t2..:noprt1..ech|
00000320  6f 20 b3 20 20 20 20 20  20 20 20 20 20 20 20 20  |o .             |
00000330  20 20 20 41 20 70 72 69  6e 74 65 72 20 69 73 20  |   A printer is |
00000340  4e 4f 54 20 63 6f 6e 6e  65 63 74 65 64 20 74 6f  |NOT connected to|
00000350  20 70 6f 72 74 20 4c 50  54 31 0d 0a 67 6f 74 6f  | port LPT1..goto|
00000360  20 70 6f 72 74 32 20 20  20 20 20 20 20 20 20 20  | port2          |
00000370  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
000003a0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 b3  |               .|
000003b0  0d 0a 3a 6e 6f 70 6f 72  74 31 0d 0a 65 63 68 6f  |..:noport1..echo|
000003c0  20 b3 20 20 20 20 20 20  20 20 20 20 20 20 20 20  | .              |
000003d0  20 20 50 6f 72 74 20 4c  50 54 31 20 69 73 20 4e  |  Port LPT1 is N|
000003e0  4f 54 20 61 76 61 69 6c  61 62 6c 65 20 74 6f 20  |OT available to |
000003f0  74 68 65 20 73 79 73 74  65 6d 20 20 20 20 20 20  |the system      |
00000400  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 b3  |               .|
00000410  0d 0a 0d 0a 3a 70 6f 72  74 32 0d 0a 70 73 74 61  |....:port2..psta|
00000420  74 20 32 0d 0a 69 66 20  45 52 52 4f 52 4c 45 56  |t 2..if ERRORLEV|
00000430  45 4c 3d 3d 33 20 67 6f  74 6f 20 6e 6f 70 72 74  |EL==3 goto noprt|
00000440  32 0d 0a 69 66 20 45 52  52 4f 52 4c 45 56 45 4c  |2..if ERRORLEVEL|
00000450  3d 3d 32 20 67 6f 74 6f  20 6e 6f 70 6f 72 74 32  |==2 goto noport2|
00000460  0d 0a 69 66 20 45 52 52  4f 52 4c 45 56 45 4c 3d  |..if ERRORLEVEL=|
00000470  3d 31 20 67 6f 74 6f 20  70 72 74 6f 6e 32 0d 0a  |=1 goto prton2..|
00000480  65 63 68 6f 20 b3 20 20  20 20 20 20 20 20 20 20  |echo .          |
00000490  41 20 70 72 69 6e 74 65  72 20 69 73 20 63 6f 6e  |A printer is con|
000004a0  6e 65 63 74 65 64 20 74  6f 20 70 6f 72 74 20 4c  |nected to port L|
000004b0  50 54 32 20 61 6e 64 20  69 73 20 73 77 69 74 63  |PT2 and is switc|
000004c0  68 65 64 20 4f 46 46 20  20 20 20 20 20 20 20 20  |hed OFF         |
000004d0  20 20 20 b3 0d 0a 67 6f  74 6f 20 70 6f 72 74 33  |   ...goto port3|
000004e0  0d 0a 3a 70 72 74 6f 6e  32 0d 0a 65 63 68 6f 20  |..:prton2..echo |
000004f0  b3 20 20 20 20 20 20 20  20 20 20 41 20 70 72 69  |.          A pri|
00000500  6e 74 65 72 20 69 73 20  63 6f 6e 6e 65 63 74 65  |nter is connecte|
00000510  64 20 74 6f 20 70 6f 72  74 20 4c 50 54 32 20 61  |d to port LPT2 a|
00000520  6e 64 20 69 73 20 73 77  69 74 63 68 65 64 20 4f  |nd is switched O|
00000530  4e 20 20 20 20 20 20 20  20 20 20 20 20 20 b3 0d  |N             ..|
00000540  0a 67 6f 74 6f 20 70 6f  72 74 33 0d 0a 3a 6e 6f  |.goto port3..:no|
00000550  70 72 74 32 0d 0a 65 63  68 6f 20 b3 20 20 20 20  |prt2..echo .    |
00000560  20 20 20 20 20 20 20 20  20 20 20 20 41 20 70 72  |            A pr|
00000570  69 6e 74 65 72 20 69 73  20 4e 4f 54 20 63 6f 6e  |inter is NOT con|
00000580  6e 65 63 74 65 64 20 74  6f 20 70 6f 72 74 20 4c  |nected to port L|
00000590  50 54 32 20 20 20 20 20  20 20 20 20 20 20 20 20  |PT2             |
000005a0  20 20 20 20 20 20 20 20  20 b3 0d 0a 67 6f 74 6f  |         ...goto|
000005b0  20 70 6f 72 74 33 0d 0a  3a 6e 6f 70 6f 72 74 32  | port3..:noport2|
000005c0  0d 0a 65 63 68 6f 20 b3  20 20 20 20 20 20 20 20  |..echo .        |
000005d0  20 20 20 20 20 20 20 20  50 6f 72 74 20 4c 50 54  |        Port LPT|
000005e0  32 20 69 73 20 4e 4f 54  20 61 76 61 69 6c 61 62  |2 is NOT availab|
000005f0  6c 65 20 74 6f 20 74 68  65 20 73 79 73 74 65 6d  |le to the system|
00000600  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000610  20 20 20 20 20 b3 0d 0a  0d 0a 3a 70 6f 72 74 33  |     .....:port3|
00000620  0d 0a 70 73 74 61 74 20  33 0d 0a 69 66 20 45 52  |..pstat 3..if ER|
00000630  52 4f 52 4c 45 56 45 4c  3d 3d 33 20 67 6f 74 6f  |RORLEVEL==3 goto|
00000640  20 6e 6f 70 72 74 33 0d  0a 69 66 20 45 52 52 4f  | noprt3..if ERRO|
00000650  52 4c 45 56 45 4c 3d 3d  32 20 67 6f 74 6f 20 6e  |RLEVEL==2 goto n|
00000660  6f 70 6f 72 74 33 0d 0a  69 66 20 45 52 52 4f 52  |oport3..if ERROR|
00000670  4c 45 56 45 4c 3d 3d 31  20 67 6f 74 6f 20 70 72  |LEVEL==1 goto pr|
00000680  74 6f 6e 33 0d 0a 65 63  68 6f 20 b3 20 20 20 20  |ton3..echo .    |
00000690  20 20 20 20 20 20 41 20  70 72 69 6e 74 65 72 20  |      A printer |
000006a0  69 73 20 63 6f 6e 6e 65  63 74 65 64 20 74 6f 20  |is connected to |
000006b0  70 6f 72 74 20 4c 50 54  33 20 61 6e 64 20 69 73  |port LPT3 and is|
000006c0  20 73 77 69 74 63 68 65  64 20 4f 46 46 20 20 20  | switched OFF   |
000006d0  20 20 20 20 20 20 20 20  20 b3 0d 0a 67 6f 74 6f  |         ...goto|
000006e0  20 63 68 65 63 6b 0d 0a  3a 70 72 74 6f 6e 33 0d  | check..:prton3.|
000006f0  0a 65 63 68 6f 20 b3 20  20 20 20 20 20 20 20 20  |.echo .         |
00000700  20 41 20 70 72 69 6e 74  65 72 20 69 73 20 63 6f  | A printer is co|
00000710  6e 6e 65 63 74 65 64 20  74 6f 20 70 6f 72 74 20  |nnected to port |
00000720  4c 50 54 33 20 61 6e 64  20 69 73 20 73 77 69 74  |LPT3 and is swit|
00000730  63 68 65 64 20 4f 4e 20  20 20 20 20 20 20 20 20  |ched ON         |
00000740  20 20 20 20 b3 0d 0a 67  6f 74 6f 20 63 68 65 63  |    ...goto chec|
00000750  6b 0d 0a 3a 6e 6f 70 72  74 33 0d 0a 65 63 68 6f  |k..:noprt3..echo|
00000760  20 b3 20 20 20 20 20 20  20 20 20 20 20 20 20 20  | .              |
00000770  20 20 41 20 70 72 69 6e  74 65 72 20 69 73 20 4e  |  A printer is N|
00000780  4f 54 20 63 6f 6e 6e 65  63 74 65 64 20 74 6f 20  |OT connected to |
00000790  70 6f 72 74 20 4c 50 54  33 20 20 20 20 20 20 20  |port LPT3       |
000007a0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 b3  |               .|
000007b0  0d 0a 67 6f 74 6f 20 63  68 65 63 6b 0d 0a 3a 6e  |..goto check..:n|
000007c0  6f 70 6f 72 74 33 0d 0a  65 63 68 6f 20 b3 20 20  |oport3..echo .  |
000007d0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 50 6f  |              Po|
000007e0  72 74 20 4c 50 54 33 20  69 73 20 4e 4f 54 20 61  |rt LPT3 is NOT a|
000007f0  76 61 69 6c 61 62 6c 65  20 74 6f 20 74 68 65 20  |vailable to the |
00000800  73 79 73 74 65 6d 20 20  20 20 20 20 20 20 20 20  |system          |
00000810  20 20 20 20 20 20 20 20  20 20 20 b3 0d 0a 0d 0a  |           .....|
00000820  3a 63 68 65 63 6b 0d 0a  65 63 68 6f 20 da c4 c4  |:check..echo ...|
00000830  c4 c4 c4 c4 c4 63 68 65  63 6b 20 69 66 20 74 68  |.....check if th|
00000840  65 72 65 20 69 73 20 61  20 70 72 69 6e 74 65 72  |ere is a printer|
00000850  20 6f 6e 20 70 6f 72 74  20 4c 50 54 31 5b 50 52  | on port LPT1[PR|
00000860  4e 5d 20 26 20 73 77 69  74 63 68 65 64 20 4f 4e  |N] & switched ON|
00000870  c4 c4 c4 c4 c4 c4 c4 c4  c4 c4 c4 bf 0d 0a 70 73  |..............ps|
00000880  74 61 74 20 31 0d 0a 69  66 20 45 52 52 4f 52 4c  |tat 1..if ERRORL|
00000890  45 56 45 4c 3d 3d 33 20  67 6f 74 6f 20 63 68 6b  |EVEL==3 goto chk|
000008a0  63 6f 6e 0d 0a 69 66 20  45 52 52 4f 52 4c 45 56  |con..if ERRORLEV|
000008b0  45 4c 3d 3d 32 20 67 6f  74 6f 20 63 68 6b 70 6f  |EL==2 goto chkpo|
000008c0  72 74 0d 0a 69 66 20 45  52 52 4f 52 4c 45 56 45  |rt..if ERRORLEVE|
000008d0  4c 3d 3d 31 20 67 6f 74  6f 20 6f 70 74 31 0d 0a  |L==1 goto opt1..|
000008e0  65 63 68 6f 20 b3 20 20  20 20 54 68 65 72 65 20  |echo .    There |
000008f0  69 73 20 61 20 70 72 69  6e 74 65 72 20 63 6f 6e  |is a printer con|
00000900  6e 65 63 74 65 64 20 74  6f 20 70 6f 72 74 20 4c  |nected to port L|
00000910  50 54 31 20 62 75 74 20  73 77 69 74 63 68 20 69  |PT1 but switch i|
00000920  74 20 6f 6e 20 70 6c 65  61 73 65 21 20 20 20 20  |t on please!    |
00000930  20 20 20 b3 0d 0a 67 6f  74 6f 20 65 6e 64 0d 0a  |   ...goto end..|
00000940  3a 63 68 6b 63 6f 6e 0d  0a 65 63 68 6f 20 b3 20  |:chkcon..echo . |
00000950  20 20 20 54 68 65 72 65  20 69 73 20 4e 4f 20 70  |   There is NO p|
00000960  72 69 6e 74 65 72 20 63  6f 6e 6e 65 63 74 65 64  |rinter connected|
00000970  20 74 6f 20 70 6f 72 74  20 4c 50 54 31 20 73 6f  | to port LPT1 so|
00000980  20 63 6f 6e 6e 65 63 74  20 6f 6e 65 20 70 6c 65  | connect one ple|
00000990  61 73 65 21 20 20 20 20  20 20 20 20 b3 0d 0a 67  |ase!        ...g|
000009a0  6f 74 6f 20 65 6e 64 0d  0a 3a 63 68 6b 70 6f 72  |oto end..:chkpor|
000009b0  74 0d 0a 65 63 68 6f 20  b3 20 20 20 20 20 20 20  |t..echo .       |
000009c0  20 20 20 20 57 68 61 74  20 61 20 64 75 64 20 63  |    What a dud c|
000009d0  6f 6d 70 75 74 65 72 21  20 2d 20 79 6f 75 20 68  |omputer! - you h|
000009e0  61 76 65 6e 27 74 20 67  6f 74 20 61 20 70 6f 72  |aven't got a por|
000009f0  74 20 4c 50 54 31 20 20  20 20 20 20 20 20 20 20  |t LPT1          |
00000a00  20 20 20 20 20 20 b3 0d  0a 67 6f 74 6f 20 65 6e  |      ...goto en|
00000a10  64 0d 0a 0d 0a 3a 6f 70  74 31 0d 0a 65 63 68 6f  |d....:opt1..echo|
00000a20  20 b3 20 20 20 20 20 20  20 20 20 20 20 20 20 20  | .              |
00000a30  20 20 20 20 20 4f 2e 4b  2e 20 2d 20 70 72 69 6e  |     O.K. - prin|
00000a40  74 65 72 20 63 6f 6e 6e  65 63 74 65 64 20 61 6e  |ter connected an|
00000a50  64 20 73 77 69 74 63 68  65 64 20 4f 4e 20 20 20  |d switched ON   |
00000a60  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 b3  |               .|
00000a70  0d 0a 65 63 68 6f 20 da  c4 c4 c4 c4 c4 c4 c4 63  |..echo ........c|
00000a80  68 65 63 6b 20 74 68 65  20 73 74 61 74 75 73 20  |heck the status |
00000a90  6f 66 20 74 68 65 20 70  72 69 6e 74 65 72 20 75  |of the printer u|
00000aa0  73 69 6e 67 20 70 61 72  61 6c 6c 65 6c 20 70 6f  |sing parallel po|
00000ab0  72 74 20 4c 50 54 31 5b  50 52 4e 5d c4 c4 c4 c4  |rt LPT1[PRN]....|
00000ac0  c4 c4 c4 c4 c4 bf 0d 0a  70 73 74 61 74 20 31 20  |........pstat 1 |
00000ad0  31 0d 0a 65 63 68 6f 20  b3 20 20 20 20 20 20 20  |1..echo .       |
00000ae0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000af0  20 20 20 20 20 20 44 65  76 69 63 65 20 74 69 6d  |      Device tim|
00000b00  65 20 6f 75 74 3f 20 20  20 20 20 20 20 20 20 20  |e out?          |
00000b10  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000b20  20 20 20 20 20 20 b3 0d  0a 69 66 20 45 52 52 4f  |      ...if ERRO|
00000b30  52 4c 45 56 45 4c 3d 3d  31 20 67 6f 74 6f 20 64  |RLEVEL==1 goto d|
00000b40  65 76 79 65 73 0d 0a 65  63 68 6f 20 b3 20 20 20  |evyes..echo .   |
00000b50  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000b60  20 20 20 20 20 20 20 20  20 20 20 20 2d 5b 20 20  |            -[  |
00000b70  4e 20 4f 20 20 5d 2d 20  20 20 20 20 20 20 20 20  |N O  ]-         |
00000b80  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000b90  20 20 20 20 20 20 20 20  20 20 b3 0d 0a 67 6f 74  |          ...got|
00000ba0  6f 20 6f 70 74 32 0d 0a  3a 64 65 76 79 65 73 0d  |o opt2..:devyes.|
00000bb0  0a 65 63 68 6f 20 b3 20  20 20 20 20 20 20 20 20  |.echo .         |
00000bc0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000bd0  20 20 20 20 20 20 2d 5b  20 59 20 45 20 53 20 5d  |      -[ Y E S ]|
00000be0  2d 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |-               |
00000bf0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000c00  20 20 20 20 b3 0d 0a 0d  0a 3a 6f 70 74 32 0d 0a  |    .....:opt2..|
00000c10  70 73 74 61 74 20 31 20  32 0d 0a 65 63 68 6f 20  |pstat 1 2..echo |
00000c20  b3 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |.               |
00000c30  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000c40  20 49 2f 4f 20 65 72 72  6f 72 3f 20 20 20 20 20  | I/O error?     |
00000c50  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000c60  20 20 20 20 20 20 20 20  20 20 20 20 20 20 b3 0d  |              ..|
00000c70  0a 69 66 20 45 52 52 4f  52 4c 45 56 45 4c 3d 3d  |.if ERRORLEVEL==|
00000c80  31 20 67 6f 74 6f 20 69  6f 79 65 73 0d 0a 65 63  |1 goto ioyes..ec|
00000c90  68 6f 20 b3 20 20 20 20  20 20 20 20 20 20 20 20  |ho .            |
00000ca0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000cb0  20 20 20 2d 5b 20 20 4e  20 4f 20 20 5d 2d 20 70  |   -[  N O  ]- p|
00000cc0  72 69 6e 74 65 72 20 4f  4e 2d 4c 49 4e 45 20 20  |rinter ON-LINE  |
00000cd0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000ce0  20 b3 0d 0a 67 6f 74 6f  20 6f 70 74 33 0d 0a 3a  | ...goto opt3..:|
00000cf0  69 6f 79 65 73 0d 0a 65  63 68 6f 20 b3 20 20 20  |ioyes..echo .   |
00000d00  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000d10  20 20 20 20 20 20 20 20  20 20 20 20 2d 5b 20 59  |            -[ Y|
00000d20  20 45 20 53 20 5d 2d 20  70 72 69 6e 74 65 72 20  | E S ]- printer |
00000d30  4f 46 46 2d 4c 49 4e 45  20 20 20 20 20 20 20 20  |OFF-LINE        |
00000d40  20 20 20 20 20 20 20 20  20 20 b3 0d 0a 0d 0a 3a  |          .....:|
00000d50  6f 70 74 33 0d 0a 70 73  74 61 74 20 31 20 33 0d  |opt3..pstat 1 3.|
00000d60  0a 65 63 68 6f 20 b3 20  20 20 20 20 20 20 20 20  |.echo .         |
00000d70  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000d80  20 20 20 20 20 20 20 53  65 6c 65 63 74 65 64 3f  |       Selected?|
00000d90  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000db0  20 20 20 20 b3 0d 0a 69  66 20 45 52 52 4f 52 4c  |    ...if ERRORL|
00000dc0  45 56 45 4c 3d 3d 31 20  67 6f 74 6f 20 73 65 6c  |EVEL==1 goto sel|
00000dd0  79 65 73 0d 0a 65 63 68  6f 20 b3 20 20 20 20 20  |yes..echo .     |
00000de0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000df0  20 20 20 20 20 20 20 20  20 20 2d 5b 20 20 4e 20  |          -[  N |
00000e00  4f 20 20 5d 2d 20 20 20  20 20 20 20 20 20 20 20  |O  ]-           |
00000e10  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000e20  20 20 20 20 20 20 20 20  b3 0d 0a 67 6f 74 6f 20  |        ...goto |
00000e30  6f 70 74 34 0d 0a 3a 73  65 6c 79 65 73 0d 0a 65  |opt4..:selyes..e|
00000e40  63 68 6f 20 b3 20 20 20  20 20 20 20 20 20 20 20  |cho .           |
00000e50  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000e60  20 20 20 20 2d 5b 20 59  20 45 20 53 20 5d 2d 20  |    -[ Y E S ]- |
00000e70  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000e90  20 20 b3 0d 0a 0d 0a 3a  6f 70 74 34 0d 0a 70 73  |  .....:opt4..ps|
00000ea0  74 61 74 20 31 20 34 0d  0a 65 63 68 6f 20 b3 20  |tat 1 4..echo . |
00000eb0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000ec0  20 20 20 20 20 20 20 20  20 20 20 20 20 4f 75 74  |             Out|
00000ed0  20 6f 66 20 70 61 70 65  72 3f 20 20 20 20 20 20  | of paper?      |
00000ee0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000ef0  20 20 20 20 20 20 20 20  20 20 20 20 b3 0d 0a 69  |            ...i|
00000f00  66 20 45 52 52 4f 52 4c  45 56 45 4c 3d 3d 31 20  |f ERRORLEVEL==1 |
00000f10  67 6f 74 6f 20 6f 75 74  70 61 70 79 65 73 0d 0a  |goto outpapyes..|
00000f20  65 63 68 6f 20 b3 20 20  20 20 20 20 20 20 20 20  |echo .          |
00000f30  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000f40  20 20 20 20 20 2d 5b 20  20 4e 20 4f 20 20 5d 2d  |     -[  N O  ]-|
00000f50  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00000f70  20 20 20 b3 0d 0a 67 6f  74 6f 20 6f 70 74 35 0d  |   ...goto opt5.|
00000f80  0a 3a 6f 75 74 70 61 70  79 65 73 0d 0a 65 63 68  |.:outpapyes..ech|
00000f90  6f 20 b3 20 20 20 20 20  20 20 20 20 20 20 20 20  |o .             |
00000fa0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000fb0  20 20 2d 5b 20 59 20 45  20 53 20 5d 2d 20 70 6c  |  -[ Y E S ]- pl|
00000fc0  65 61 73 65 20 69 6e 73  65 72 74 20 73 6f 6d 65  |ease insert some|
00000fd0  20 6d 6f 72 65 20 70 61  70 65 72 21 20 20 20 20  | more paper!    |
00000fe0  b3 0d 0a 0d 0a 3a 6f 70  74 35 0d 0a 70 73 74 61  |.....:opt5..psta|
00000ff0  74 20 31 20 35 0d 0a 65  63 68 6f 20 b3 20 20 20  |t 1 5..echo .   |
00001000  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001010  20 20 20 20 20 20 20 20  20 20 20 20 41 63 6b 6e  |            Ackn|
00001020  6f 77 6c 65 64 67 65 3f  20 20 20 20 20 20 20 20  |owledge?        |
00001030  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001040  20 20 20 20 20 20 20 20  20 20 b3 0d 0a 69 66 20  |          ...if |
00001050  45 52 52 4f 52 4c 45 56  45 4c 3d 3d 31 20 67 6f  |ERRORLEVEL==1 go|
00001060  74 6f 20 61 63 6b 79 65  73 0d 0a 65 63 68 6f 20  |to ackyes..echo |
00001070  b3 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |.               |
00001080  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001090  2d 5b 20 20 4e 20 4f 20  20 5d 2d 20 20 20 20 20  |-[  N O  ]-     |
000010a0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000010b0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 b3 0d  |              ..|
000010c0  0a 67 6f 74 6f 20 6f 70  74 36 0d 0a 3a 61 63 6b  |.goto opt6..:ack|
000010d0  79 65 73 0d 0a 65 63 68  6f 20 b3 20 20 20 20 20  |yes..echo .     |
000010e0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000010f0  20 20 20 20 20 20 20 20  20 20 2d 5b 20 59 20 45  |          -[ Y E|
00001100  20 53 20 5d 2d 20 20 20  20 20 20 20 20 20 20 20  | S ]-           |
00001110  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001120  20 20 20 20 20 20 20 20  b3 0d 0a 0d 0a 3a 6f 70  |        .....:op|
00001130  74 36 0d 0a 70 73 74 61  74 20 31 20 36 0d 0a 65  |t6..pstat 1 6..e|
00001140  63 68 6f 20 b3 20 20 20  20 20 20 20 20 20 20 20  |cho .           |
00001150  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001160  20 20 20 20 20 4e 6f 74  20 62 75 73 79 3f 20 20  |     Not busy?  |
00001170  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
*
00001190  20 20 b3 0d 0a 69 66 20  45 52 52 4f 52 4c 45 56  |  ...if ERRORLEV|
000011a0  45 4c 3d 3d 31 20 67 6f  74 6f 20 62 75 73 79 65  |EL==1 goto busye|
000011b0  73 0d 0a 65 63 68 6f 20  b3 20 20 20 20 20 20 20  |s..echo .       |
000011c0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000011d0  20 20 20 20 20 20 20 20  2d 5b 20 20 4e 20 4f 20  |        -[  N O |
000011e0  20 5d 2d 20 20 20 20 20  20 20 20 20 20 20 20 20  | ]-             |
000011f0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001200  20 20 20 20 20 20 b3 0d  0a 67 6f 74 6f 20 65 6e  |      ...goto en|
00001210  64 0d 0a 3a 62 75 73 79  65 73 0d 0a 65 63 68 6f  |d..:busyes..echo|
00001220  20 b3 20 20 20 20 20 20  20 20 20 20 20 20 20 20  | .              |
00001230  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00001240  20 2d 5b 20 59 20 45 20  53 20 5d 2d 20 70 72 69  | -[ Y E S ]- pri|
00001250  6e 74 65 72 20 6e 6f 74  20 62 75 73 79 20 64 6f  |nter not busy do|
00001260  69 6e 67 20 61 6e 79 74  68 69 6e 67 20 20 20 b3  |ing anything   .|
00001270  0d 0a 3a 65 6e 64 0d 0a  65 63 68 6f 20 c0 c4 c4  |..:end..echo ...|
00001280  c4 c4 c4 c4 c4 c4 c4 c4  c4 c4 c4 c4 c4 c4 c4 c4  |................|
*
000012c0  c4 c4 c4 c4 c4 c4 c4 c4  c4 c4 c4 d9 0d 0a 1a     |...............|
000012cf
04-02-89/Ptest\BAT.m0
04-02-89/Ptest\BAT.m1
04-02-89/Ptest\BAT.m2
04-02-89/Ptest\BAT.m4
04-02-89/Ptest\BAT.m5