Subversion Repositories ngs

Rev

Blame | Last modification | View Log | Download | RSS feed

  1.  
  2. @echo off
  3.  
  4. if not exist tmp md tmp
  5. call setpath_tools
  6. call setpath_includes
  7.  
  8. cls
  9.  
  10. rem test for NeoGS
  11.  
  12. asl -U -L -C -x -olist tmp\testngs.lst -i %includes% -D ADR_START=0x8000 testngs.a80 || goto error
  13. p2bin testngs.p tmp\testngs.rom -r $-$ -k
  14.  
  15. mhmt -mlz tmp\testngs.rom tmp\testngs.pack
  16.  
  17. asl -U -L -C -x -olist tmp\make_hobeta.lst -i %includes% -D ADR_START=0x8000 make_hobeta.a80 || goto error
  18. p2bin make_hobeta.p testngs.$C -r $-$ -k || goto error
  19.  
  20. asl -U -L -C -x -olist tmp\make_scl.lst -i %includes% -D ADR_START=0x8000 make_scl.a80 || goto error
  21. p2bin make_scl.p testngs.scl -r $-$ -k || goto error
  22.  
  23. csum32 testngs.scl -a
  24.  
  25. echo ########################
  26. echo # -= End Compile Ok =- #
  27. echo ########################
  28. goto exit
  29.  
  30. :error
  31. echo #######################
  32. echo # -= Error Compile =- #
  33. echo #######################
  34.  
  35. :exit