diff options
author | B. Watson <yalhcru@gmail.com> | 2016-02-04 17:33:17 -0500 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2016-02-04 17:33:17 -0500 |
commit | 3ccfe725cfd1672e04dcf5caa555ceaaf3f27159 (patch) | |
tree | bbe8c3e4651d0994f57d0cb48e30cfc196e0fc54 /Makefile | |
parent | 00d78b9f401ec6f1ba0a1c900e382ec323058337 (diff) | |
download | taipan-3ccfe725cfd1672e04dcf5caa555ceaaf3f27159.tar.gz |
rewrite cspace() in asm, save a few more bytes
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -89,7 +89,7 @@ XEX=taipan.xex # All the C and asm sources for taimain.xex: TAIMAIN_HDRS=sounds.h TAIMAIN_C_SRC=taipan.c -TAIMAIN_ASM_SRC=rand.s draw_lorcha.s timed_getch.s portstat.s clrtobot.s ultostr.s soundasm.s explosion.s +TAIMAIN_ASM_SRC=rand.s draw_lorcha.s timed_getch.s portstat.s console.s ultostr.s soundasm.s explosion.s # Comment these lines out to build without big number support. # This will stop being possible at some point. @@ -179,7 +179,7 @@ help.dat: help.txt text2screen.pl taimain.xex: $(TAIMAIN_C_SRC) $(TAIMAIN_ASM_SRC) $(TAIMAIN_HDRS) $(BIGNUM_SRC) $(BIGNUM_HDRS) cl65 -m taipan.map $(CFLAGS) $(BIGNUM_CFLAGS) -o taimain.xex $(TAIMAIN_C_SRC) $(TAIMAIN_ASM_SRC) $(BIGNUM_SRC) -#cl65 --mapfile taipan.map $(CFLAGS) -o taimain.xex taipan.c sounds.c rand.s draw_lorcha.s timed_getch.s jsleep.s portstat.s clrtobot.s +#cl65 --mapfile taipan.map $(CFLAGS) -o taimain.xex taipan.c sounds.c rand.s draw_lorcha.s timed_getch.s jsleep.s portstat.s console.s # With newer cc65s, I have to do this to get an assembly listing of just # taipan.c. This rule not used as part of the main build, it's only for |