whoops it's 16 levels not 8 :D

This commit is contained in:
Brooke Vibber 2024-08-23 20:54:17 -07:00
parent 1165c19c8e
commit 77606d464e
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,5 @@
.FAKE : all test clean
all : rickroll.xex all : rickroll.xex
# reminder: $< is input # reminder: $< is input
@ -9,8 +11,11 @@ all : rickroll.xex
%.o : %.s %.o : %.s
ca65 -v -t atari -o $@ $< ca65 -v -t atari -o $@ $<
%.xex : %.o mono8.o atari-asm-xex.cfg %.xex : %.o mono16.o atari-asm-xex.cfg
ld65 -v -C ./atari-asm-xex.cfg -o $@ mono8.o $< ld65 -v -C ./atari-asm-xex.cfg -o $@ mono16.o $<
test : all
atari800 rickroll.xex
clean : clean :
rm -f *.xex rm -f *.xex

View file