Rev 1120 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1120 | Rev 1186 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | 1 | ||
2 | echo off |
2 | echo off |
3 | 3 | ||
4 | if not exist rom md rom |
- | |
5 | if not exist lst md lst |
4 | if not exist tmp md tmp |
6 | 5 | ||
7 | if "%BUILDFULL%"=="" call ../../setpath.bat |
6 | if "%BUILDFULL%"=="" call ../../setpath.bat |
8 | 7 | ||
9 | asl -U -L -x -olist lst\main.lst -i %includes% main.a80 |
8 | asl -U -L -x -olist tmp\main.lst -i %includes% main.a80 |
10 | p2bin main.p rom\main.rom -r $-$ -k |
9 | p2bin main.p tmp\main.rom -r $-$ -k |
11 | 10 | ||
12 | asl -U -L -x -olist lst\main_fe.lst -i %includes% -D DOS_FE main.a80 |
11 | asl -U -L -x -olist tmp\main_fe.lst -i %includes% -D DOS_FE main.a80 |
13 | p2bin main.p rom\main_fe.rom -r $-$ -k |
12 | p2bin main.p tmp\main_fe.rom -r $-$ -k |
14 | 13 | ||
15 | asl -U -L -x -olist lst\cmosset.lst -i %includes% cmosset.a80 |
14 | asl -U -L -x -olist tmp\cmosset.lst -i %includes% cmosset.a80 |
16 | p2bin cmosset.p rom\cmosset.rom -r $-$ -k |
15 | p2bin cmosset.p tmp\cmosset.rom -r $-$ -k |
17 | 16 | ||
18 | mhmt -mlz rom\main.rom ..\main_pack.rom |
17 | mhmt -mlz tmp\main.rom ..\main_pack.rom |
19 | mhmt -mlz rom\main_fe.rom ..\main_fe_pack.rom |
18 | mhmt -mlz tmp\main_fe.rom ..\main_fe_pack.rom |
20 | mhmt -mlz rom\cmosset.rom ..\cmosset_pack.rom |
19 | mhmt -mlz tmp\cmosset.rom ..\cmosset_pack.rom |
21 | mhmt -mlz chars_eng.bin ..\chars_pack.rom |
20 | mhmt -mlz chars_eng.bin ..\chars_pack.rom |
22 | 21 | ||
23 | rem del *.rom |
22 | rem del *.rom |
24 | 23 | ||
25 | if NOT "%BUILDFULL%"=="" exit /b |
24 | if NOT "%BUILDFULL%"=="" exit /b |
26 | 25 | ||
27 | set PATH=%oldpath% |
26 | set PATH=%oldpath% |
28 | - |