2019-11-20 18:22:11 -08:00
|
|
|
#!/bin/bash
|
|
|
|
set -e -x
|
2019-12-13 23:35:07 -08:00
|
|
|
cd $(dirname $0)
|
2019-11-20 18:22:11 -08:00
|
|
|
ca65 -I ../../inc Neon816.s -l Neon816.lst
|
2019-12-04 21:18:42 -08:00
|
|
|
ca65 -I ../../inc romboot.s -l romboot.lst
|
2019-11-20 18:22:11 -08:00
|
|
|
../../build.sh Neon816
|
2019-12-13 22:39:24 -08:00
|
|
|
ld65 -vm -C Neon816.l Neon816.o ../../forth.o ./romboot.o -m forth.map -o of816-neon.bin
|
2019-12-04 21:18:42 -08:00
|
|
|
ls -l of816-neon.bin
|
|
|
|
if which -s bin2hex; then
|
2019-12-13 23:41:13 -08:00
|
|
|
bin2hex of816-neon.bin > of816-neon.hex
|
2019-12-04 21:18:42 -08:00
|
|
|
ls -l of816-neon.hex
|
|
|
|
fi
|
2019-11-20 18:22:11 -08:00
|
|
|
|