home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Media Share 9
/
MEDIASHARE_09.ISO
/
progmisc
/
asmwiz16.zip
/
8CREATE.BAT
next >
Wrap
DOS Batch File
|
1991-01-29
|
487b
|
14 lines
echo off
echo This batch file will assemble and link the EXAMPLE.ASM file using
echo A86 and LINK. If you are using a different assembler and/or linker,
echo this batch file must be changed to reflect the names of your assembler
echo and linker.
echo --------------------------------------------------------------------
pause
ren example.asm example.8
a86 example.8 example.obj
ren example.8 example.asm
link example,,nul,asmwiz;
erase example.obj
execom example