aboutsummaryrefslogtreecommitdiff
path: root/bank2.s
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2016-02-25 02:49:27 -0500
committerB. Watson <yalhcru@gmail.com>2016-02-25 02:49:27 -0500
commitcd4dc6ab4422ee4d26f758ebe99443831ac5f9e3 (patch)
tree29036770133fb90746b1476af2ce490ef2923500 /bank2.s
parentadecc6f859c75ae3fcc31a2f0924296607f8411c (diff)
downloadtaipan-cd4dc6ab4422ee4d26f758ebe99443831ac5f9e3.tar.gz
cartridge build is now a 32K cart, also fixed "play again? N" in the cart
Diffstat (limited to 'bank2.s')
-rw-r--r--bank2.s18
1 files changed, 11 insertions, 7 deletions
diff --git a/bank2.s b/bank2.s
index 6f36b38..1b68038 100644
--- a/bank2.s
+++ b/bank2.s
@@ -1,13 +1,17 @@
-start = $8000
-end = $9fff
- .org start
- .incbin "splitrom.raw.2"
+ .include "atari.inc"
- .if * > end
+ ; where the font lives. Must agree with bank3.s.
+font = $9c00
+
+ .org $8000
+ .incbin "rodata.8000"
+
+ .if * > font
.fatal "bank2 code too large"
.else
- .out .sprintf("=> %d bytes free in bank 2", end - *)
+ .out .sprintf("=> %d bytes free in bank 2", font - *)
.endif
- .res end-*+1, $ff
+ .res font - *, $ff
+ .incbin "taifont"