home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Stars of Shareware: Programmierung
/
SOURCE.mdf
/
programm
/
msdos
/
progtool
/
dos32v12
/
mk.bat
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1993-10-17
|
251 b
|
12 lines
@echo off
echo A batch file to assemble for the DOS extender
if not exist %1.ASM goto :NotFound
tasm /z /p %1
if not exist %1.OBJ goto :Exit
tlink /3 dos32.obj %2 %3 %4 %5 %1, %1
goto :Exit
:NotFound
echo %1.ASM NOT FOUND
:Exit