mirror of
https://github.com/mgcaret/of816.git
synced 2025-01-03 19:30:36 +00:00
8 lines
175 B
Bash
Executable File
8 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
set -e -x
|
|
ca65 -I ../../inc Neon816.s -l Neon816.lst
|
|
../../build.sh Neon816
|
|
ld65 -C Neon816.l -S 0x8000 Neon816.o ../../forth.o -m forth.map -o forth
|
|
ls -l forth
|
|
|