home *** CD-ROM | disk | FTP | other *** search
- @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