mirror of
https://github.com/cc65/cc65.git
synced 2025-01-14 16:33:00 +00:00
Renamed DEINSTALL -> UNINSTALL
git-svn-id: svn://svn.cc65.org/cc65/trunk@1968 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
23fc9ab74c
commit
e3faea3fa2
@ -39,7 +39,7 @@
|
|||||||
; primitives - for example ploting a line by using calls to SETPIXEL.
|
; primitives - for example ploting a line by using calls to SETPIXEL.
|
||||||
|
|
||||||
.word INSTALL
|
.word INSTALL
|
||||||
.word DEINSTALL
|
.word UNINSTALL
|
||||||
.word INIT
|
.word INIT
|
||||||
.word DONE
|
.word DONE
|
||||||
.word GETERROR
|
.word GETERROR
|
||||||
@ -146,13 +146,13 @@ INSTALL:
|
|||||||
|
|
||||||
|
|
||||||
; ------------------------------------------------------------------------
|
; ------------------------------------------------------------------------
|
||||||
; DEINSTALL routine. Is called before the driver is removed from memory. May
|
; UNINSTALL routine. Is called before the driver is removed from memory. May
|
||||||
; clean up anything done by INSTALL but is probably empty most of the time.
|
; clean up anything done by INSTALL but is probably empty most of the time.
|
||||||
;
|
;
|
||||||
; Must set an error code: NO
|
; Must set an error code: NO
|
||||||
;
|
;
|
||||||
|
|
||||||
DEINSTALL:
|
UNINSTALL:
|
||||||
rts
|
rts
|
||||||
|
|
||||||
|
|
||||||
@ -185,7 +185,7 @@ INIT:
|
|||||||
lda $DD00
|
lda $DD00
|
||||||
and #$FC ; Switch to bank 3
|
and #$FC ; Switch to bank 3
|
||||||
sta $DD00
|
sta $DD00
|
||||||
|
|
||||||
lda $D018
|
lda $D018
|
||||||
sta OLDD018
|
sta OLDD018
|
||||||
lda #$48 ; Set color map to $D000, screen to $E000
|
lda #$48 ; Set color map to $D000, screen to $E000
|
||||||
|
Loading…
x
Reference in New Issue
Block a user