mirror of
https://github.com/mist64/msbasic.git
synced 2024-12-12 03:29:52 +00:00
b3f9bbecea
old mode 100644 new mode 100755
13 lines
222 B
Bash
Executable File
13 lines
222 B
Bash
Executable File
if [ ! -d tmp ]; then
|
|
mkdir tmp
|
|
fi
|
|
|
|
for i in cbmbasic1 cbmbasic2 kbdbasic osi kb9 applesoft microtan aim65 sym1; 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
|
|
|