diff options
Diffstat (limited to 'newtitle.s')
-rw-r--r-- | newtitle.s | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -285,11 +285,16 @@ start: ; still needs to be done here for the cart. .ifdef CART_TARGET lda SDLSTL - sta FR1 + sta FRE lda SDLSTH - sta FR1+1 + sta FRE+1 .endif + ; helpshowing is FR1, it's being messed with by the checkmem + ; code so we need to initialize it. + lda #0 + sta helpshowing + ; setup our display list lda #<dlist sta SDLSTL |