mirror of
https://github.com/mist64/msbasic.git
synced 2024-10-31 19:04:32 +00:00
14 lines
353 B
Bash
Executable File
14 lines
353 B
Bash
Executable File
# 1.0
|
|
for i in cbmbasic1 cbmbasic2 kbdbasic osi kb9 applesoft microtan; do
|
|
|
|
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
|
|
|
|
done
|
|
|
|
#da65 --info applesoft-temp.txt
|