mirror of
https://github.com/mgcaret/of816.git
synced 2025-01-14 02:32:09 +00:00
11 lines
262 B
Bash
Executable File
11 lines
262 B
Bash
Executable File
#!/bin/bash
|
|
set -e -x
|
|
cd $(dirname $0)
|
|
toke fcode/romloader.fs
|
|
ruby mkromfs.rb romfs fs/*
|
|
ca65 -I ../../inc W65C816SXB.s -l W65C816SXB.lst
|
|
../../build.sh W65C816SXB
|
|
ld65 -vm -C W65C816SXB.l -S 0x8000 W65C816SXB.o ../../forth.o -m forth.map -o forth
|
|
ls -l forth
|
|
|