msbasic/make.sh

14 lines
353 B
Bash
Raw Normal View History

2008-10-07 08:03:36 +00:00
# 1.0
2008-10-13 20:26:42 +00:00
for i in cbmbasic1 cbmbasic2 kbdbasic osi kb9 applesoft microtan; do
2008-10-07 10:36:34 +00:00
2008-10-12 03:33:45 +00:00
echo $i
ca65 -D $i msbasic.s -o tmp/$i.o &&
ld65 -C $i.cfg tmp/$i.o -o tmp/$i-new.bin -Ln tmp/$i.lbl &&
xxd -g 1 orig/$i.bin > tmp/$i.bin.txt
xxd -g 1 tmp/$i-new.bin > tmp/$i-new.bin.txt
diff -u tmp/$i.bin.txt tmp/$i-new.bin.txt | head
2008-10-08 05:07:59 +00:00
2008-10-12 03:33:45 +00:00
done
2008-10-07 04:54:56 +00:00
2008-10-11 09:24:32 +00:00
#da65 --info applesoft-temp.txt