Merge pull request #4 from sblendorio/main

Update build.sh
This commit is contained in:
nino-porcino 2022-01-02 14:46:55 +01:00 committed by GitHub
commit 260ddc8df0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -9,12 +9,14 @@ echo ======================== VIC20 ============================================
kickc.sh -includedir ${TMS9918}/lib -targetdir ${TMS9918}/kickc/ -t vic20_8k ${TARGET}.c -o out/${TARGET}_vic20.prg -e
cp out/${TARGET}.prg out/${TARGET}_vic20.prg
echo ======================== APPLE 1 =================================================
echo ======================== APPLE 1 JUKEBOX =================================================
kickc.sh -includedir ${TMS9918}/lib -targetdir ${TMS9918}/kickc/ -t apple1_jukebox ${TARGET}.c -o out/${TARGET}_apple1.prg -e
# builds the apple1 eprom file
node ${TMS9918}/tools/mkeprom out out/${TARGET}_apple1.bin
echo ======================== APPLE 1 =================================================
kickc.sh -includedir ${TMS9918}/lib -targetdir ${TMS9918}/kickc/ -t apple1 ${TARGET}.c -o out/${TARGET}_apple1.prg -e
cp out/${TARGET}.prg out/${TARGET}_apple1.prg
# clean up files
rm -f out/apple1_codeseg.bin
rm -f out/apple1_dataseg.bin