diff options
author | B. Watson <yalhcru@gmail.com> | 2021-05-05 02:45:50 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2021-05-05 02:45:50 -0400 |
commit | 4aaef78999918ab6565604b606838dd9e1d63728 (patch) | |
tree | 2a4096c16e5e5502aaae0eb3deabc001b7ca845e | |
parent | 6419123eb7abf926df0910d66188d47c798ebb46 (diff) | |
download | taipan-4aaef78999918ab6565604b606838dd9e1d63728.tar.gz |
Fix cart build (again)
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -330,7 +330,7 @@ cartbank2.cfg: cartbank2.cfg.old cartbank2.cfg.new cartbank2.sh # using a custom crt0 to get rid of the extra RTS cc65 puts there for # SpartaDOS compatibility (which has no effect on a cartridge image, # except to waste 1 byte). -romable_taimain.raw: cartbank2.cfg $(TAIMAIN_C_SRC) $(TAIMAIN_ASM_SRC) $(TAIMAIN_HDRS) $(BIGNUM_SRC) $(BIGNUM_HDRS) $(TAIMAIN_LIBS) crt0_cart.s messages.c helpmsgs.c +romable_taimain.raw: cartbank2.cfg $(TAIMAIN_C_SRC) $(TAIMAIN_ASM_SRC) $(TAIMAIN_HDRS) $(BIGNUM_SRC) $(BIGNUM_HDRS) $(TAIMAIN_LIBS) crt0_cart.s messages.c helpmsgs.c LORCHA.DAT $(CC) --config cartbank2.cfg -m taipan.map -t atari -T -I. -L. -DFONT_ADDR=0x9c00 --start-addr 0x400 -Wl -D__STACKSIZE__=0x200 -O -Wl -D__SYSTEM_CHECK__=1 -Wl -D__AUTOSTART__=1 -Wl -D__EXEHDR__=1 --asm-define GAME_HELP=1 -DGAME_HELP -DCART_TARGET=1 --asm-define CART_TARGET=1 -DBIGNUM=BIGFLOAT -o romable_taimain.raw $(TAIMAIN_C_SRC) $(TAIMAIN_ASM_SRC) $(BIGNUM_SRC) $(TAIMAIN_LIBS) crt0_cart.s gamehelp.s # 8192 bytes of $ff filler, for unused banks. Possibly these will be |