-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDOSBUILD.BAT
executable file
·39 lines (30 loc) · 1.59 KB
/
DOSBUILD.BAT
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@echo off
jwasmd -bin drvsrc\hda16s.asm
if errorlevel 1 goto end
rem Convention is to change last letter to 'w' for "RATIONAL" version
move hda16s.bin hdw16s.bin
jwasmd -bin -D?FLASHTEK=1 drvsrc\hda16s.asm
if errorlevel 1 goto end
hmiappnd.exe oldfile=C:\RAYMAN\HMIDRV.OLD newfile=C:\RAYMAN\HMIDRV.386 drvf:E040=hda16s.bin drvr:E040=hdw16s.bin
hmiappnd.exe oldfile=C:\RAYKIT\HMIDRV.OLD newfile=C:\RAYKIT\HMIDRV.386 drvf:E040=hda16s.bin drvr:E040=hdw16s.bin
hmiappnd.exe oldfile=C:\EDUGB1\HMIDRV.OLD newfile=C:\EDUGB1\HMIDRV.386 drvf:E040=hda16s.bin drvr:E040=hdw16s.bin
hmiappnd.exe oldfile=C:\EDUGB3\HMIDRV.OLD newfile=C:\EDUGB3\HMIDRV.386 drvf:E040=hda16s.bin drvr:E040=hdw16s.bin
:detector
jwasmd -bin drvsrc\hda16sd.asm
if errorlevel 1 goto end
rem Convention is to change last letter to 'w' for "RATIONAL" version
move hda16sd.bin hdw16sd.bin
jwasmd -bin -D?FLASHTEK=1 drvsrc\hda16sd.asm
if errorlevel 1 goto end
hmiappnd.exe oldfile=C:\RAYMAN\HMIDET.OLD newfile=C:\RAYMAN\HMIDET.386 drvf:E040=hda16sd.bin drvr:E040=hdw16sd.bin
hmiappnd.exe oldfile=C:\RAYKIT\HMIDET.OLD newfile=C:\RAYKIT\HMIDET.386 drvf:E040=hda16sd.bin drvr:E040=hdw16sd.bin
hmiappnd.exe oldfile=C:\EDUGB1\HMIDET.OLD newfile=C:\EDUGB1\HMIDET.386 drvf:E040=hda16sd.bin drvr:E040=hdw16sd.bin
hmiappnd.exe oldfile=C:\EDUGB3\HMIDET.OLD newfile=C:\EDUGB3\HMIDET.386 drvf:E040=hda16sd.bin drvr:E040=hdw16sd.bin
:redirector
jwasmd -bin toolsrc\hmiredir.asm
if errorlevel 1 goto end
move hmiredir.bin hmiredir.com
jwasmd -Idrvsrc -bin raytools\soundbin.asm
if errorlevel 1 goto end
move soundbin.bin soundbin.com
:end