aboutsummaryrefslogtreecommitdiff
path: root/newtitle.s
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2016-02-24 16:25:39 -0500
committerB. Watson <yalhcru@gmail.com>2016-02-24 16:25:39 -0500
commitad6e5ee981f85839443cc359537bf2997f5ad11d (patch)
tree8183e2a0c5c6529436daafcf3a022a6fcab222b8 /newtitle.s
parentf898176dd3871dcb15ecfbb3eca46f539d284b8b (diff)
downloadtaipan-ad6e5ee981f85839443cc359537bf2997f5ad11d.tar.gz
remove some unused conio code, move newtitle.s variables to \$cb-\$ce
Diffstat (limited to 'newtitle.s')
-rw-r--r--newtitle.s13
1 files changed, 7 insertions, 6 deletions
diff --git a/newtitle.s b/newtitle.s
index 3a5c73c..610fc60 100644
--- a/newtitle.s
+++ b/newtitle.s
@@ -22,16 +22,17 @@ origin = *
; location sound code will look at to see whether sound
; is disabled (0 = enabled, !0 = disabled). If you
; change this here, change it in sounds.h also!
- ; in case you're wondering, $03c0 is the start of the printer
- ; buffer. Taipan doesn't print, so no problem.
-sound_disabled = $03c0
+ ; $cb is free zero page, not used by the OS or DOS. These
+ ; don't have to be zero page, but it saves a few bytes if
+ ; they are.
+sound_disabled = $cb
; since we're changing the font and colors, we'll save the old
; ones here. If you change these, change them in taipan.c and soundasm.s
; also.
-fontsave = $03c1
-color1save = $03c2
-color2save = $003c3
+fontsave = $cc
+color1save = $cd
+color2save = $ce
version:
.incbin "ver.dat"