diff options
author | B. Watson <yalhcru@gmail.com> | 2015-12-31 04:13:25 -0500 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2015-12-31 04:13:25 -0500 |
commit | 11df8375e0a0864297d71260ae5c2bf148241dee (patch) | |
tree | 772eb99226812dca4f0588bd6120f838a1d99561 /Makefile | |
parent | 0ab84dd41eabd424420530efa36ac6147379706c (diff) | |
download | taipan-11df8375e0a0864297d71260ae5c2bf148241dee.tar.gz |
faster redraws, fix damage bug, fix mchenry damage calcs
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -7,10 +7,10 @@ SYS=atari #COPT=-O -l -T COPT=-O -T -# for older cc65: +# for older cc65, we need a custom linker file. #CFLAGS=-t $(SYS) -C custom.cfg -I. -L. $(COPT) -# for recent git cc65. +# for recent git cc65, we can reserve memory on the command line. # -D__RESERVED_MEMORY__=1056 because cc65's default end of memory # is $BC20, and we want it to end just below our font, which starts # at $B800. @@ -88,3 +88,6 @@ lorchatest: lorchatest.c draw_lorcha.s taifont.xex cl65 -t atari -O -T -o lorchatest1.xex lorchatest.c draw_lorcha.s cat taifont.xex lorchatest1.xex > lorchatest.xex atari800 -nobasic lorchatest.xex + +PORTSTAT.DAT: mkportstats.xex + atari800 -nobasic mkportstats.xex |