diff options
author | B. Watson <yalhcru@gmail.com> | 2016-01-20 23:46:17 -0500 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2016-01-20 23:46:17 -0500 |
commit | 9d032c9a1c0eca663c6877f5421957f50cb1eb79 (patch) | |
tree | 3626b074e0beece467318f41d35d42cb146d57e0 /Makefile | |
parent | 8aec40856588437a20906a0820941382475344ec (diff) | |
download | taipan-9d032c9a1c0eca663c6877f5421957f50cb1eb79.tar.gz |
rewrite sound code in asm, shed 186 bytes
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -88,8 +88,8 @@ XEX=taipan.xex # All the C and asm sources for taimain.xex: TAIMAIN_HDRS=sounds.h -TAIMAIN_C_SRC=taipan.c sounds.c -TAIMAIN_ASM_SRC=rand.s draw_lorcha.s timed_getch.s jsleep.s portstat.s clrtobot.s ultostr.s +TAIMAIN_C_SRC=taipan.c +TAIMAIN_ASM_SRC=rand.s draw_lorcha.s timed_getch.s jsleep.s portstat.s clrtobot.s ultostr.s soundasm.s # Comment these lines out to build without big number support. # This will stop being possible at some point. @@ -140,7 +140,7 @@ titledata.dat: newtitle.pl newtitle.png # compressed title, for faster loading. see titlecompression.txt # for gory details. comptitle.xex: titledata.dat titlecomp.pl comptitle.s.in - perl titlecomp.pl 151 < titledata.dat + perl titlecomp.pl 133 < titledata.dat cl65 -l comptitle.lst -o comptitle.xex -t none --asm-define destination=$(TITLE_DATA_ADDR) comptitle.s # Init segment that loads after the title screen data. It sets up |