Changeset 37 for trunk/TOOLS/DOS/INITHDD
- Timestamp:
- Apr 11, 2014, 8:39:07 PM (11 years ago)
- Location:
- trunk/TOOLS/DOS/INITHDD
- Files:
-
- 2 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/TOOLS/DOS/INITHDD/INITHDD.ASM
r30 r37 17 17 ; 18 18 19 JUMPS19 ;JUMPS 20 20 21 Include ..\..\..\include\asm.inc 22 ;include ..\..\..\include\dos\airboot.inc 21 Include ../../../INCLUDE/ASM.INC 23 22 24 23 .386p 25 model large, basic24 .model large, basic 26 25 27 26 code_seg segment public use16 … … 30 29 air_boot_setup: jmp INITHDD_Start 31 30 32 Introduction :db 'INITHDD - AiR-BOOT Initialize HDD Utility (DOS) - (c) 2004 by M. Kiewitz',13,1031 Introduction db 'INITHDD - AiR-BOOT Initialize HDD Utility (DOS) - (c) 2004 by M. Kiewitz',13,10 33 32 db 0 34 33 … … 69 68 dw 00000h, 00000h, 00000h, 0AA55h 70 69 71 ; Include .. \..\..\include\DOS\Const.asm70 ; Include ../../../INCLUDE\DOS\CONST.ASM 72 71 73 72 INITHDD_Start: mov ax, cs -
trunk/TOOLS/DOS/INITHDD/MAKE.BAT
r30 r37 8 8 %exe2bin% inithdd.exe inithdd.com >nul 9 9 if errorlevel 1 goto Failed 10 copy inithdd.com ..\..\..\RELEASE\DOS\inithdd.com 10 copy inithdd.com ..\..\..\RELEASE\DOS\INITHDD.COM 11 12 @ren inithdd.LST inithdd.TSL 13 @ren inithdd.TSL INITHDD.LST 11 14 12 15 rem Cleanup -
trunk/TOOLS/DOS/INITHDD/MAKE.CMD
r36 r37 1 1 @echo off 2 2 rem Do actual build... 3 call ..\..\..\env\ dos.bat3 call ..\..\..\env\os2.cmd 4 4 %assembler% inithdd.asm 5 5 if errorlevel 1 goto Failed 6 %linker% inithdd.obj >nul6 %linker% inithdd.obj; >nul 7 7 if errorlevel 1 goto Failed 8 8 %exe2bin% inithdd.exe inithdd.com >nul 9 9 if errorlevel 1 goto Failed 10 copy inithdd.com ..\..\..\RELEASE\DOS\inithdd.com 10 copy inithdd.com ..\..\..\RELEASE\DOS\INITHDD.COM 11 12 @ren inithdd.LST inithdd.TSL 13 @ren inithdd.TSL INITHDD.LST 11 14 12 15 rem Cleanup
Note:
See TracChangeset
for help on using the changeset viewer.