mirror of
https://github.com/mgcaret/of816.git
synced 2025-01-08 06:29:46 +00:00
8 lines
165 B
Bash
8 lines
165 B
Bash
|
#!/bin/bash
|
||
|
set -e -x
|
||
|
ca65 -I ../../inc GoSXB.s -l GoSXB.lst
|
||
|
../../build.sh GoSXB
|
||
|
ld65 -C GoSXB.l -S 0x8000 GoSXB.o ../../forth.o -m forth.map -o forth
|
||
|
ls -l forth
|
||
|
|