WIP alternate imul16

not working at present
This commit is contained in:
Brooke Vibber 2023-02-11 12:24:48 -08:00
commit f10bb4fe18
5 changed files with 194 additions and 13 deletions

View file

@ -2,13 +2,17 @@
all : mandel.xex
%.xex : %.o
ld65 -C atari-asm-xex.cfg -o $@ $<
mandel.xex : mandel.o tables.o
ld65 -C ./atari-asm-xex.cfg -o $@ $+
%.o : %.s
ca65 -o $@ $<
tables.s : tables.js
node tables.js > tables.s
clean :
rm -f tables.s
rm -f *.o
rm -f *.xex