apple1-videocard-lib/tools/build.bat

22 lines
848 B
Batchfile
Raw Normal View History

2021-12-15 15:53:06 +00:00
@rem === BUILD SCRIPT ===
@SET TARGET=%1
@SET TMS9918=..\..
2021-12-15 15:53:06 +00:00
2022-01-01 10:19:16 +00:00
@echo ======================== APPLE 1 JUKEBOX =================================================
call kickc -includedir %TMS9918%\lib -targetdir %TMS9918%\kickc\ -t apple1_jukebox %TARGET%.c -o out\%TARGET%.prg -e
call node %TMS9918%\tools\mkeprom out out\%TARGET%_jukebox.bin
2021-12-15 15:53:06 +00:00
2022-01-01 11:49:53 +00:00
@echo ======================== APPLE 1 =================================================
2022-01-31 10:04:34 +00:00
call kickc -includedir %TMS9918%\lib -targetdir %TMS9918%\kickc\ -t apple1 %TARGET%.c -o out\%TARGET%.prg -e -Xassembler="-symbolfile"
call node %TMS9918%\tools\prg2bin -i out\%TARGET%.prg -o out\%TARGET%.bin
call node %TMS9918%\tools\prg2woz -i out\%TARGET%.prg -o out\%TARGET%.woz
2022-01-01 10:19:16 +00:00
2021-12-15 15:53:06 +00:00
@rem clean up files
@del out\apple1_codeseg.bin
@del out\apple1_dataseg.bin
@del out\*.vs
@del out\*.klog
@del out\*.vs
@del out\*.dbg