2 ; Extended memory driver for the C64 D2TV (the second or PAL version).
3 ; Driver works without problems when statically linked.
5 ; Ullrich von Bassewitz, 2005-11-27
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 OP_COPYFROM = %00001101
44 START_BANK = 2 ; Start at $20000
45 PAGES = (2048 - 128) * 4
48 ; ------------------------------------------------------------------------
52 window: .res 256 ; Memory "window"
56 ; The MAP and COMMIT entries will actually call COPYFROM/COPYTO with
57 ; a pointer to the following data structure:
59 dma_params: .word window ; Host address
60 .byte 0 ; Offset in page
61 curpage: .word $0000 ; Page
62 .word .sizeof (window); # bytes to move, lo, hi
66 ; ------------------------------------------------------------------------
67 ; INSTALL routine. Is called after the driver is loaded into memory. If
68 ; possible, check if the hardware is present and determine the amount of
70 ; Must return an EM_ERR_xx code in a/x.
75 sta $d03f ; Enable extended register access
77 stx curpage+1 ; Invalidate curpage
81 ; rts ; Run into UNINSTALL instead
83 ; ------------------------------------------------------------------------
84 ; UNINSTALL routine. Is called before the driver is removed from memory.
85 ; Can do cleanup or whatever. Must not return anything.
91 ; ------------------------------------------------------------------------
92 ; PAGECOUNT: Return the total number of available pages in a/x.
100 ; ------------------------------------------------------------------------
101 ; MAP: Map the page in a/x into memory and return a pointer to the page in
102 ; a/x. The contents of the currently mapped page (if any) may be discarded
107 stx curpage+1 ; Remember the new page
111 jsr COPYFROM ; Copy data into the window
114 ldx #>window ; Return the window address
117 ; ------------------------------------------------------------------------
118 ; USE: Tell the driver that the window is now associated with a given page.
121 stx curpage+1 ; Remember the page
123 ldx #>window ; Return the window
126 ; ------------------------------------------------------------------------
127 ; COMMIT: Commit changes in the memory window to extended storage.
129 COMMIT: lda curpage+1 ; Do we have a page mapped?
130 bmi done ; Jump if no page mapped
137 ; ------------------------------------------------------------------------
138 ; COPYTO: Copy from linear into extended memory. A pointer to a structure
139 ; describing the request is passed in a/x.
140 ; The function must not return anything.
144 stx ptr1+1 ; Save the pointer
146 ldx #OP_COPYTO ; Load the command
149 ; ------------------------------------------------------------------------
150 ; COPYFROM: Copy from extended into linear memory. A pointer to a structure
151 ; describing the request is passed in a/x.
152 ; The function must not return anything.
157 stx ptr1+1 ; Save the pointer
161 ; DTV DMA transfer routine. Expects the command in X.
162 ; NOTE: We're using knowledge about field order in the EM_COPY struct here!
165 jsr WAIT ; Wait until DMA is finished
172 ; Setup the target address and the source and target steps. Y contains zero,
173 ; which is EM_COPY::BUF.
175 sty $d307 ; Source step high = 0
176 sty $d309 ; Dest step high = 0
178 sta $d303 ; Dest address low
180 sty $d306 ; Source step low = 1
181 sty $d308 ; Dest step low = 1
184 lda #$40 ; Dest is always RAM, start at $00000
187 ; Setup the source address. Incrementing Y will make it point to EM_COPY::OFFS.
188 ; We will allow page numbers higher than PAGES and map them to ROM. This will
189 ; allow reading the ROM by specifying a page starting with PAGES.
199 adc #START_BANK ; Carry clear here from WAIT
201 cmp #>PAGES+START_BANK ; Valid range?
203 ora #$40 ; Address RAM
219 ; Wait until DMA is done