mirror of
https://github.com/cc65/cc65.git
synced 2024-12-26 08:32:00 +00:00
Renamed the DEINSTALL vector to UNINSTALL.
Checked/fixed compatibility when linked statically. git-svn-id: svn://svn.cc65.org/cc65/trunk@1959 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
2a293bfc6b
commit
749298f340
@ -1,5 +1,6 @@
|
|||||||
;
|
;
|
||||||
; Extended memory driver for the GEORAM cartridge
|
; Extended memory driver for the GEORAM cartridge. Driver works without
|
||||||
|
; problems when statically linked.
|
||||||
;
|
;
|
||||||
; Ullrich von Bassewitz, 2002-11-29
|
; Ullrich von Bassewitz, 2002-11-29
|
||||||
;
|
;
|
||||||
@ -26,7 +27,7 @@
|
|||||||
; Jump table.
|
; Jump table.
|
||||||
|
|
||||||
.word INSTALL
|
.word INSTALL
|
||||||
.word DEINSTALL
|
.word UNINSTALL
|
||||||
.word PAGECOUNT
|
.word PAGECOUNT
|
||||||
.word MAP
|
.word MAP
|
||||||
.word USE
|
.word USE
|
||||||
@ -63,11 +64,11 @@ INSTALL:
|
|||||||
rts
|
rts
|
||||||
|
|
||||||
; ------------------------------------------------------------------------
|
; ------------------------------------------------------------------------
|
||||||
; DEINSTALL routine. Is called before the driver is removed from memory.
|
; UNINSTALL routine. Is called before the driver is removed from memory.
|
||||||
; Can do cleanup or whatever. Must not return anything.
|
; Can do cleanup or whatever. Must not return anything.
|
||||||
;
|
;
|
||||||
|
|
||||||
DEINSTALL:
|
UNINSTALL:
|
||||||
rts
|
rts
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
;
|
;
|
||||||
; Extended memory driver for the C128 RAM in bank #1
|
; Extended memory driver for the C128 RAM in bank #1. Driver works without
|
||||||
|
; problems when statically linked.
|
||||||
;
|
;
|
||||||
; Ullrich von Bassewitz, 2002-12-04
|
; Ullrich von Bassewitz, 2002-12-04
|
||||||
;
|
;
|
||||||
@ -27,7 +28,7 @@
|
|||||||
; Jump table.
|
; Jump table.
|
||||||
|
|
||||||
.word INSTALL
|
.word INSTALL
|
||||||
.word DEINSTALL
|
.word UNINSTALL
|
||||||
.word PAGECOUNT
|
.word PAGECOUNT
|
||||||
.word MAP
|
.word MAP
|
||||||
.word USE
|
.word USE
|
||||||
@ -45,10 +46,9 @@ PAGES = (TOPMEM - BASE) / 256
|
|||||||
; ------------------------------------------------------------------------
|
; ------------------------------------------------------------------------
|
||||||
; Data.
|
; Data.
|
||||||
|
|
||||||
.data
|
|
||||||
curpage: .word $FFFF ; Current page number (invalid)
|
|
||||||
|
|
||||||
.bss
|
.bss
|
||||||
|
curpage: .res 1 ; Current page number
|
||||||
|
|
||||||
window: .res 256 ; Memory "window"
|
window: .res 256 ; Memory "window"
|
||||||
|
|
||||||
.code
|
.code
|
||||||
@ -61,16 +61,19 @@ window: .res 256 ; Memory "window"
|
|||||||
;
|
;
|
||||||
|
|
||||||
INSTALL:
|
INSTALL:
|
||||||
lda #<EM_ERR_OK
|
ldx #$FF
|
||||||
ldx #>EM_ERR_OK
|
stx curpage
|
||||||
|
stx curpage+1 ; Invalidate the current page
|
||||||
|
inx
|
||||||
|
txa ; A = X = EM_ERR_OK
|
||||||
rts
|
rts
|
||||||
|
|
||||||
; ------------------------------------------------------------------------
|
; ------------------------------------------------------------------------
|
||||||
; DEINSTALL routine. Is called before the driver is removed from memory.
|
; UNINSTALL routine. Is called before the driver is removed from memory.
|
||||||
; Can do cleanup or whatever. Must not return anything.
|
; Can do cleanup or whatever. Must not return anything.
|
||||||
;
|
;
|
||||||
|
|
||||||
DEINSTALL:
|
UNINSTALL:
|
||||||
rts
|
rts
|
||||||
|
|
||||||
|
|
||||||
@ -270,7 +273,7 @@ COPYTO: sta ptr3
|
|||||||
lda (ptr3),y ; Get bytes in last page
|
lda (ptr3),y ; Get bytes in last page
|
||||||
beq @L4
|
beq @L4
|
||||||
sta tmp1
|
sta tmp1
|
||||||
|
|
||||||
ldy #$00
|
ldy #$00
|
||||||
@L3: lda (ptr2),y
|
@L3: lda (ptr2),y
|
||||||
ldx #MMU_CFG_RAM1
|
ldx #MMU_CFG_RAM1
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
;
|
;
|
||||||
; Extended memory driver for the RamCart 64/128KB cartridge
|
; Extended memory driver for the RamCart 64/128KB cartridge. Driver works
|
||||||
; (based on GEORAM code by Ullrich von Bassewitz)
|
; without problems when statically linked.
|
||||||
|
; Code is based on GEORAM code by Ullrich von Bassewitz.
|
||||||
; Maciej 'YTM/Elysium' Witkowiak <ytm@elysium.pl>
|
; Maciej 'YTM/Elysium' Witkowiak <ytm@elysium.pl>
|
||||||
; 06,22.12.2002
|
; 06,22.12.2002
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
||||||
.include "zeropage.inc"
|
.include "zeropage.inc"
|
||||||
@ -28,7 +29,7 @@
|
|||||||
; Jump table.
|
; Jump table.
|
||||||
|
|
||||||
.word INSTALL
|
.word INSTALL
|
||||||
.word DEINSTALL
|
.word UNINSTALL
|
||||||
.word PAGECOUNT
|
.word PAGECOUNT
|
||||||
.word MAP
|
.word MAP
|
||||||
.word USE
|
.word USE
|
||||||
@ -39,16 +40,16 @@
|
|||||||
; ------------------------------------------------------------------------
|
; ------------------------------------------------------------------------
|
||||||
; Constants
|
; Constants
|
||||||
|
|
||||||
RAMC_WINDOW = $DF00 ; Address of RamCart window
|
RAMC_WINDOW = $DF00 ; Address of RamCart window
|
||||||
RAMC_PAGE_LO = $DE00 ; Page register low
|
RAMC_PAGE_LO = $DE00 ; Page register low
|
||||||
RAMC_PAGE_HI = $DE01 ; Page register high (only for RC128)
|
RAMC_PAGE_HI = $DE01 ; Page register high (only for RC128)
|
||||||
|
|
||||||
; ------------------------------------------------------------------------
|
; ------------------------------------------------------------------------
|
||||||
; Data.
|
; Data.
|
||||||
|
|
||||||
.data
|
.bss
|
||||||
|
|
||||||
pagecount: .word 512 ; default for RC128
|
pagecount: .res 2 ; Number of pages available
|
||||||
|
|
||||||
.code
|
.code
|
||||||
|
|
||||||
@ -102,11 +103,11 @@ INSTALL:
|
|||||||
rts
|
rts
|
||||||
|
|
||||||
; ------------------------------------------------------------------------
|
; ------------------------------------------------------------------------
|
||||||
; DEINSTALL routine. Is called before the driver is removed from memory.
|
; UNINSTALL routine. Is called before the driver is removed from memory.
|
||||||
; Can do cleanup or whatever. Must not return anything.
|
; Can do cleanup or whatever. Must not return anything.
|
||||||
;
|
;
|
||||||
|
|
||||||
DEINSTALL:
|
UNINSTALL:
|
||||||
rts
|
rts
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
;
|
;
|
||||||
; Extended memory driver for the Commodore REU
|
; Extended memory driver for the Commodore REU. Driver works without
|
||||||
|
; problems when statically linked.
|
||||||
;
|
;
|
||||||
; Ullrich von Bassewitz, 2002-11-29
|
; Ullrich von Bassewitz, 2002-11-29
|
||||||
;
|
;
|
||||||
@ -27,7 +28,7 @@
|
|||||||
; Jump table.
|
; Jump table.
|
||||||
|
|
||||||
.word INSTALL
|
.word INSTALL
|
||||||
.word DEINSTALL
|
.word UNINSTALL
|
||||||
.word PAGECOUNT
|
.word PAGECOUNT
|
||||||
.word MAP
|
.word MAP
|
||||||
.word USE
|
.word USE
|
||||||
@ -54,11 +55,10 @@ OP_COPYTO = $EC
|
|||||||
; ------------------------------------------------------------------------
|
; ------------------------------------------------------------------------
|
||||||
; Data.
|
; Data.
|
||||||
|
|
||||||
.data
|
|
||||||
pagecount: .res 2 ; Number of pages available
|
|
||||||
curpage: .word $FFFF ; Current page number (invalid)
|
|
||||||
|
|
||||||
.bss
|
.bss
|
||||||
|
pagecount: .res 2 ; Number of pages available
|
||||||
|
curpage: .res 2 ; Current page number
|
||||||
|
|
||||||
window: .res 256 ; Memory "window"
|
window: .res 256 ; Memory "window"
|
||||||
|
|
||||||
reu_params: .word $0000 ; Host address, lo, hi
|
reu_params: .word $0000 ; Host address, lo, hi
|
||||||
@ -94,8 +94,11 @@ INSTALL:
|
|||||||
ldx #>(256*4) ; 256KB when size bit is set
|
ldx #>(256*4) ; 256KB when size bit is set
|
||||||
@L1: stx pagecount+1
|
@L1: stx pagecount+1
|
||||||
|
|
||||||
lda #<EM_ERR_OK
|
ldx #$FF
|
||||||
ldx #>EM_ERR_OK
|
stx curpage
|
||||||
|
stx curpage+1 ; Invalidate the current page
|
||||||
|
inx
|
||||||
|
txa ; X = A = EM_ERR_OK
|
||||||
rts
|
rts
|
||||||
|
|
||||||
; No REU found
|
; No REU found
|
||||||
@ -106,11 +109,11 @@ nodevice:
|
|||||||
rts
|
rts
|
||||||
|
|
||||||
; ------------------------------------------------------------------------
|
; ------------------------------------------------------------------------
|
||||||
; DEINSTALL routine. Is called before the driver is removed from memory.
|
; UNINSTALL routine. Is called before the driver is removed from memory.
|
||||||
; Can do cleanup or whatever. Must not return anything.
|
; Can do cleanup or whatever. Must not return anything.
|
||||||
;
|
;
|
||||||
|
|
||||||
DEINSTALL:
|
UNINSTALL:
|
||||||
rts
|
rts
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user