From cd4dc6ab4422ee4d26f758ebe99443831ac5f9e3 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Thu, 25 Feb 2016 02:49:27 -0500 Subject: cartridge build is now a 32K cart, also fixed "play again? N" in the cart --- bank2.s | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'bank2.s') 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" -- cgit v1.2.3