1
0
mirror of https://github.com/mgcaret/of816.git synced 2024-09-28 19:55:06 +00:00
of816/platforms/Neon816/build.sh

14 lines
353 B
Bash
Raw Normal View History

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