1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00

Merge pull request #642 from polluks/patch-6

NMI-friendly c64-hi.tgi
This commit is contained in:
greg-king5 2018-05-10 09:00:34 -04:00 committed by GitHub
commit 2a78b9d3fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -131,7 +131,7 @@ VBASE := $E000 ; Video memory base address
;
INSTALL:
rts
; rts ; fall through
; ------------------------------------------------------------------------
@ -272,7 +272,7 @@ CLEAR: ldy #$00
sta VBASE+$1C00,y
sta VBASE+$1D00,y
sta VBASE+$1E00,y
sta VBASE+$1F00,y
sta VBASE+$1E40,y ; preserve vectors
iny
bne @L1
rts
@ -285,7 +285,7 @@ CLEAR: ldy #$00
;
SETVIEWPAGE:
rts
; rts ; fall through
; ------------------------------------------------------------------------
; SETDRAWPAGE: Set the drawable page. Called with the new page in A (0..n).