retro1/software/retro1-tests/OSI/msbasic/make.sh

14 lines
229 B
Bash

if [ ! -d tmp ]; then
mkdir tmp
fi
#for i in cbmbasic1 cbmbasic2 kbdbasic osi kb9 applesoft microtan; do
for i in osi; do
echo $i
ca65 -D $i msbasic.s -o tmp/$i.o &&
ld65 -C $i.cfg tmp/$i.o -o tmp/$i.bin -Ln tmp/$i.lbl
done