home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 17
/
CD_ASCQ_17_101194.iso
/
vrac
/
tsbat46.zip
/
PORTS.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-12-06
|
548b
|
17 lines
@echo off
echo.
echo ┌───────────────────────────────────────────────────┐
echo │ Show ports' reversed high/low base I/O addresses │
echo │ Adaption from PC Computing Nov 1992, p. 370 │
echo │ By Prof. Timo Salmi, ts@uwasa.fi, Sun 6-Dec-1992 │
echo └───────────────────────────────────────────────────┘
echo.
echo d 0040:0000> debug.in
echo q>> debug.in
debug < debug.in > debug.out
echo COM1 COM2 COM3 COM4 LPT1 LPT2 LPT3 LPT4
type debug.out | find "0040:0000" | find /v "-d"
del debug.in
del debug.out