home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Source Code 1992 March
/
Source_Code_CD-ROM_Walnut_Creek_March_1992.iso
/
msdos
/
sysutl
/
rdstderr.arc
/
ASMERR.BAT
next >
Wrap
DOS Batch File
|
1988-02-24
|
273b
|
10 lines
echo off
if exist %1.ASM goto Continue
echo To use - ASMERR filename
echo where filename = name of source file (no .ASM extension)
echo STDERR will go to a file with the same body name and .ERR extension
goto Error
:Continue
rdstderr %1.err masm %1;
:Error