1
0
mirror of https://github.com/mgcaret/of816.git synced 2024-05-28 14:41:27 +00:00

GoSXB: build script should cd

This commit is contained in:
mgcaret 2019-12-27 14:09:05 -08:00
parent 160bfb5c55
commit 547c7f8bf6

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
set -e -x set -e -x
cd $(dirname $0)
ca65 -I ../../inc GoSXB.s -l GoSXB.lst ca65 -I ../../inc GoSXB.s -l GoSXB.lst
../../build.sh GoSXB ../../build.sh GoSXB
ld65 -C GoSXB.l -S 0x8000 GoSXB.o ../../forth.o -m forth.map -o forth ld65 -C GoSXB.l -S 0x8000 GoSXB.o ../../forth.o -m forth.map -o forth