2 ; Extended memory driver for the Commodore REU. Driver works without
3 ; problems when statically linked.
5 ; Ullrich von Bassewitz, 2002-11-29
8 .include "zeropage.inc"
10 .include "em-kernel.inc"
11 .include "em-error.inc"
17 ; ------------------------------------------------------------------------
18 ; Header. Includes jump table
24 .byte $65, $6d, $64 ; "emd"
25 .byte EMD_API_VERSION ; EM API version number
38 ; ------------------------------------------------------------------------
41 REU_STATUS = $DF00 ; Status register
42 REU_COMMAND = $DF01 ; Command register
43 REU_C64ADDR = $DF02 ; C64 base address register
44 REU_REUADDR = $DF04 ; REU base address register
45 REU_COUNT = $DF07 ; Transfer count register
46 REU_IRQMASK = $DF09 ; IRQ mask register
47 REU_CONTROL = $DF0A ; Control register
48 REU_TRIGGER = $FF00 ; REU command trigger
54 ; ------------------------------------------------------------------------
58 pagecount: .res 2 ; Number of pages available
59 curpage: .res 2 ; Current page number
61 window: .res 256 ; Memory "window"
63 reu_params: .word $0000 ; Host address, lo, hi
64 .word $0000 ; Exp address, lo, hi
65 .byte $00 ; Expansion bank no.
66 .word $0000 ; # bytes to move, lo, hi
67 .byte $00 ; Interrupt mask reg.
68 .byte $00 ; Adress control reg.
72 ; ------------------------------------------------------------------------
73 ; INSTALL routine. Is called after the driver is loaded into memory. If
74 ; possible, check if the hardware is present and determine the amount of
76 ; Must return an EM_ERR_xx code in a/x.
80 ldx #$00 ; High byte of return code
83 cmp REU_REUADDR ; Check for presence of REU
87 cmp REU_REUADDR ; Check for presence of REU
90 ldy #>(128*4) ; Assume 128KB
92 and #$10 ; Check size bit
94 ldy #>(256*4) ; 256KB when size bit is set
99 sty curpage+1 ; Invalidate the current page
100 txa ; X = A = EM_ERR_OK
106 lda #EM_ERR_NO_DEVICE
107 ; rts ; Run into UNINSTALL instead
109 ; ------------------------------------------------------------------------
110 ; UNINSTALL routine. Is called before the driver is removed from memory.
111 ; Can do cleanup or whatever. Must not return anything.
118 ; ------------------------------------------------------------------------
119 ; PAGECOUNT: Return the total number of available pages in a/x.
127 ; ------------------------------------------------------------------------
128 ; MAP: Map the page in a/x into memory and return a pointer to the page in
129 ; a/x. The contents of the currently mapped page (if any) may be discarded
134 stx curpage+1 ; Remember the new page
137 jsr common ; Copy the window
140 ldx #>window ; Return the window address
143 ; ------------------------------------------------------------------------
144 ; USE: Tell the driver that the window is now associated with a given page.
147 stx curpage+1 ; Remember the page
149 ldx #>window ; Return the window
152 ; ------------------------------------------------------------------------
153 ; COMMIT: Commit changes in the memory window to extended storage.
156 ldx curpage+1 ; Do we have a page mapped?
157 bmi done ; Jump if no page mapped
174 sty REU_COUNT+1 ; Move 256 bytes
175 bne transfer1 ; Transfer 256 bytes into REU
177 ; ------------------------------------------------------------------------
178 ; COPYFROM: Copy from extended into linear memory. A pointer to a structure
179 ; describing the request is passed in a/x.
180 ; The function must not return anything.
187 ; ------------------------------------------------------------------------
188 ; COPYTO: Copy from linear into extended memory. A pointer to a structure
189 ; describing the request is passed in a/x.
190 ; The function must not return anything.
197 ; Remember the passed pointer
200 stx ptr1+1 ; Save the pointer
202 ; The structure passed to the functions has the same layout as the registers
203 ; of the Commodore REU, so register programming is easy.
211 ; Invalidate the page in the memory window
213 sty curpage+1 ; Y = $FF
215 ; Reload the REU command and start the transfer
220 ; Transfer subroutine for the REU. Expects command in Y.
223 sty REU_COMMAND ; Issue command
225 ldy $01 ; Save the value of the c64 control port...
227 and #$F8 ; Disable ROMs and I/O.
230 lda REU_TRIGGER ; Don't change $FF00
231 sta REU_TRIGGER ; Start the transfer...
233 sty $01 ; Restore the old configuration