mirror of
https://github.com/mgcaret/of816.git
synced 2025-02-07 19:30:26 +00:00
11 lines
304 B
Bash
Executable File
11 lines
304 B
Bash
Executable File
#!/bin/bash
|
|
ACMD=~/bin/AppleCommander-ac-1.5.0.jar
|
|
set -e -x
|
|
cd $(dirname $0)
|
|
ca65 -I ../../inc IIgs.s -l IIgs.lst
|
|
../../build.sh IIgs
|
|
ld65 -C IIgs.l -S 0x8000 IIgs.o ../../forth.o -m forth.map -o forth
|
|
ls -l forth
|
|
java -jar ${ACMD} -pro140 forth.po FORTH
|
|
java -jar ${ACMD} -p forth.po FORTH SYS < forth
|