aboutsummaryrefslogtreecommitdiff
path: root/bank2.old.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.old.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.old.s')
-rw-r--r--bank2.old.s13
1 files changed, 13 insertions, 0 deletions
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