Rev 1068 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1068 | Rev 1186 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | 1 | ||
2 | echo off |
2 | echo off |
3 | 3 | ||
4 | if not exist rom md rom |
4 | if not exist tmp md tmp |
5 | if not exist lst md lst |
5 | set includes=d:\yad\svn\pentevo\rom |
6 | 6 | ||
7 | if "%BUILDFULL%"=="" call ../../setpath.bat |
7 | if "%BUILDFULL%"=="" call ../../setpath.bat |
8 | 8 | ||
9 | cd %rootdir%\fat_boot\source |
9 | cd %rootdir%\fat_boot\source |
10 | 10 | ||
Line 15... | Line 15... | ||
15 | mhmt -mlz 8x8_ar.fnt 8x8_ar_pack.bin |
15 | mhmt -mlz 8x8_ar.fnt 8x8_ar_pack.bin |
16 | mhmt -mlz 866_code.fnt 866_code_pack.bin |
16 | mhmt -mlz 866_code.fnt 866_code_pack.bin |
17 | mhmt -mlz atm_code.fnt atm_code_pack.bin |
17 | mhmt -mlz atm_code.fnt atm_code_pack.bin |
18 | mhmt -mlz perfpack.bin perfpack_pack.bin |
18 | mhmt -mlz perfpack.bin perfpack_pack.bin |
19 | 19 | ||
20 | asl -U -L -x -olist lst\rst8service.lst -i %includes% rst8service.a80 |
20 | asl -U -L -x -olist tmp\rst8service.lst -i %includes% rst8service.a80 || goto error |
21 | p2bin rst8service.p ..\rst8service.rom -r $-$ -k |
21 | p2bin rst8service.p ..\rst8service.rom -r $-$ -k |
22 | 22 | ||
23 | asl -U -L -x -olist lst\rst8service_fe.lst -i %includes% -D DOS_FE rst8service.a80 |
23 | asl -U -L -x -olist tmp\rst8service_fe.lst -i %includes% -D DOS_FE rst8service.a80 || goto error |
24 | p2bin rst8service.p ..\rst8service_fe.rom -r $-$ -k |
24 | p2bin rst8service.p ..\rst8service_fe.rom -r $-$ -k |
25 | 25 | ||
- | 26 | echo ######################## |
|
- | 27 | echo # -= End Compile Ok =- # |
|
- | 28 | echo ######################## |
|
- | 29 | goto exit |
|
- | 30 | ||
- | 31 | :error |
|
- | 32 | echo ####################### |
|
- | 33 | echo # -= Error Compile =- # |
|
- | 34 | echo ####################### |
|
- | 35 | ||
- | 36 | :exit |
|
26 | 37 | ||
27 | if NOT "%BUILDFULL%"=="" exit /b |
38 | if NOT "%BUILDFULL%"=="" exit /b |
28 | 39 | ||
29 | set PATH=%oldpath% |
40 | set PATH=%oldpath% |
30 | 41 |