Subversion Repositories pentevo

Rev

Rev 1068 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed | ?url?

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