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.old.s | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bank2.old.s (limited to 'bank2.old.s') diff --git a/bank2.old.s b/bank2.old.s new file mode 100644 index 0000000..6f36b38 --- /dev/null +++ b/bank2.old.s @@ -0,0 +1,13 @@ + +start = $8000 +end = $9fff + .org start + .incbin "splitrom.raw.2" + + .if * > end + .fatal "bank2 code too large" + .else + .out .sprintf("=> %d bytes free in bank 2", end - *) + .endif + + .res end-*+1, $ff -- cgit v1.2.3