home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 9
/
CD_ASCQ_09_1193.iso
/
maj
/
4383
/
makebgi.bat
< prev
next >
Wrap
DOS Batch File
|
1991-10-12
|
644b
|
33 lines
@echo off
if X%1 not == X goto SelectType
if %1 == t goto makeTweak
if %1 == s goto makeSuperVGA
goto SelectType
:makeSuperVGA
masm SVGA%2.asm,SVGA%2.obj ;
tlink SVGA%2.obj
exe2bin SVGA%2.exe SVGA%2.bin
bh SVGA%2.bin SVGA%2.bgi SVGA%2
del SVGA%2.exe
del SVGA%2.obj
del SVGA%2.bin
del SVGA%2.map
goto Exit
:makeTweak
masm TWK%2.asm,TWK%2.obj ;
tlink TWK%2.obj
exe2bin TWK%2.exe TWK%2.bin
bh TWK%2.bin TWK%2.bgi TWK%2
del TWK%2.exe
del TWK%2.obj
del TWK%2.bin
del TWK%2.map
goto Exit
:SelectType
echo Usage: "makebgi [s|t] clr"
echo For example: to make the Tweaked-16 color driver enter: "makebgi t 16"
:Exit