mirror of
https://github.com/cc65/cc65.git
synced 2024-12-28 22:30:12 +00:00
C64 Kerberos extended memory driver
This commit is contained in:
parent
e9307ce58e
commit
76091b96d4
280
libsrc/c64/emd/c64-kerberos.s
Normal file
280
libsrc/c64/emd/c64-kerberos.s
Normal file
@ -0,0 +1,280 @@
|
|||||||
|
; Extended Memory Driver for the Kerberos MIDI interface.
|
||||||
|
; http://www.frank-buss.de/kerberos/
|
||||||
|
; based on the code for RamCart 64/128KB cartridge.
|
||||||
|
; 2020-06-16 Dirk Jagdmann <doj@cubic.org>
|
||||||
|
|
||||||
|
.include "zeropage.inc"
|
||||||
|
.include "em-kernel.inc"
|
||||||
|
.include "em-error.inc"
|
||||||
|
|
||||||
|
.macpack generic
|
||||||
|
.macpack module
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------------
|
||||||
|
; Header. Includes jump table
|
||||||
|
|
||||||
|
module_header _c64_kerberos_emd
|
||||||
|
|
||||||
|
; Driver signature
|
||||||
|
|
||||||
|
.byte $65, $6d, $64 ; "emd"
|
||||||
|
.byte EMD_API_VERSION ; EM API version number
|
||||||
|
|
||||||
|
; Library reference
|
||||||
|
|
||||||
|
.addr $0000
|
||||||
|
|
||||||
|
; Jump table
|
||||||
|
|
||||||
|
.addr INSTALL
|
||||||
|
.addr UNINSTALL
|
||||||
|
.addr PAGECOUNT
|
||||||
|
.addr MAP
|
||||||
|
.addr USE
|
||||||
|
.addr COMMIT
|
||||||
|
.addr COPYFROM
|
||||||
|
.addr COPYTO
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------------
|
||||||
|
; Constants
|
||||||
|
|
||||||
|
RAMC_WINDOW = $DF00 ; Address of Kerberos SRAM
|
||||||
|
RAMC_PAGE_LO = $DE3E ; Page register low
|
||||||
|
RAMC_PAGE_HI = $DE3F ; Page register high
|
||||||
|
|
||||||
|
.code
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------------
|
||||||
|
; INSTALL routine. Is called after the driver is loaded into memory. If
|
||||||
|
; possible, check if the hardware is present and determine the amount of
|
||||||
|
; memory available.
|
||||||
|
; Must return an EM_ERR_xx code in a/x.
|
||||||
|
;
|
||||||
|
|
||||||
|
INSTALL:
|
||||||
|
;; write $55 into first page
|
||||||
|
lda #0
|
||||||
|
sta RAMC_PAGE_LO
|
||||||
|
sta RAMC_PAGE_HI
|
||||||
|
lda #$55
|
||||||
|
sta RAMC_WINDOW
|
||||||
|
|
||||||
|
;; write $AA into second page
|
||||||
|
lda #1
|
||||||
|
sta RAMC_PAGE_LO
|
||||||
|
sta RAMC_PAGE_HI
|
||||||
|
lda #$AA
|
||||||
|
sta RAMC_WINDOW
|
||||||
|
|
||||||
|
;; check $55 in first page
|
||||||
|
lda #0
|
||||||
|
sta RAMC_PAGE_LO
|
||||||
|
sta RAMC_PAGE_HI
|
||||||
|
lda RAMC_WINDOW
|
||||||
|
cmp #$55
|
||||||
|
bne @notpresent
|
||||||
|
|
||||||
|
;; check $AA in first page
|
||||||
|
lda #1
|
||||||
|
sta RAMC_PAGE_LO
|
||||||
|
sta RAMC_PAGE_HI
|
||||||
|
lda RAMC_WINDOW
|
||||||
|
cmp #$AA
|
||||||
|
bne @notpresent
|
||||||
|
|
||||||
|
lda #<EM_ERR_OK
|
||||||
|
ldx #>EM_ERR_OK
|
||||||
|
rts
|
||||||
|
|
||||||
|
@notpresent:
|
||||||
|
lda #<EM_ERR_NO_DEVICE
|
||||||
|
ldx #>EM_ERR_NO_DEVICE
|
||||||
|
; use rts from UNINSTALL below
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------------
|
||||||
|
; UNINSTALL routine. Is called before the driver is removed from memory.
|
||||||
|
; Can do cleanup or whatever. Must not return anything.
|
||||||
|
;
|
||||||
|
|
||||||
|
UNINSTALL:
|
||||||
|
rts
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------------
|
||||||
|
; PAGECOUNT: Return the total number of available pages in a/x.
|
||||||
|
;
|
||||||
|
|
||||||
|
PAGECOUNT:
|
||||||
|
lda #0
|
||||||
|
ldx #2
|
||||||
|
rts
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------------
|
||||||
|
; USE: Tell the driver that the window is now associated with a given page.
|
||||||
|
; The Kerberos cartridge does not copy but actually map the window, so USE is
|
||||||
|
; identical to MAP.
|
||||||
|
|
||||||
|
USE = MAP
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------------
|
||||||
|
; MAP: Map the page in a/x into memory and return a pointer to the page in
|
||||||
|
; a/x. The contents of the currently mapped page (if any) may be discarded
|
||||||
|
; by the driver.
|
||||||
|
;
|
||||||
|
|
||||||
|
MAP: sta RAMC_PAGE_LO
|
||||||
|
txa
|
||||||
|
and #1
|
||||||
|
sta RAMC_PAGE_HI
|
||||||
|
lda #<RAMC_WINDOW
|
||||||
|
ldx #>RAMC_WINDOW
|
||||||
|
|
||||||
|
; Use the RTS from COMMIT below to save a precious byte of storage
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------------
|
||||||
|
; COMMIT: Commit changes in the memory window to extended storage.
|
||||||
|
|
||||||
|
COMMIT: rts
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------------
|
||||||
|
; COPYFROM: Copy from extended into linear memory. A pointer to a structure
|
||||||
|
; describing the request is passed in a/x.
|
||||||
|
; The function must not return anything.
|
||||||
|
;
|
||||||
|
|
||||||
|
COPYFROM:
|
||||||
|
jsr setup
|
||||||
|
|
||||||
|
; Setup is:
|
||||||
|
;
|
||||||
|
; - ptr1 contains the struct pointer
|
||||||
|
; - ptr2 contains the linear memory buffer
|
||||||
|
; - ptr3 contains -(count-1)
|
||||||
|
; - tmp1 contains the low page register value
|
||||||
|
; - tmp2 contains the high page register value
|
||||||
|
; - X contains the page offset
|
||||||
|
; - Y contains zero
|
||||||
|
|
||||||
|
jmp @L5
|
||||||
|
|
||||||
|
@L1: lda RAMC_WINDOW,x
|
||||||
|
sta (ptr2),y
|
||||||
|
iny
|
||||||
|
bne @L2
|
||||||
|
inc ptr2+1
|
||||||
|
@L2: inx
|
||||||
|
beq @L4
|
||||||
|
|
||||||
|
; Bump count and repeat
|
||||||
|
|
||||||
|
@L3: inc ptr3
|
||||||
|
bne @L1
|
||||||
|
inc ptr3+1
|
||||||
|
bne @L1
|
||||||
|
rts
|
||||||
|
|
||||||
|
; Bump page register
|
||||||
|
|
||||||
|
@L4: inc tmp1
|
||||||
|
bne @L5
|
||||||
|
inc tmp2
|
||||||
|
@L5: lda tmp1
|
||||||
|
sta RAMC_PAGE_LO
|
||||||
|
lda tmp2
|
||||||
|
sta RAMC_PAGE_HI
|
||||||
|
jmp @L3
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------------
|
||||||
|
; COPYTO: Copy from linear into extended memory. A pointer to a structure
|
||||||
|
; describing the request is passed in a/x.
|
||||||
|
; The function must not return anything.
|
||||||
|
;
|
||||||
|
|
||||||
|
COPYTO:
|
||||||
|
jsr setup
|
||||||
|
|
||||||
|
; Setup is:
|
||||||
|
;
|
||||||
|
; - ptr1 contains the struct pointer
|
||||||
|
; - ptr2 contains the linear memory buffer
|
||||||
|
; - ptr3 contains -(count-1)
|
||||||
|
; - tmp1 contains the low page register value
|
||||||
|
; - tmp2 contains the high page register value
|
||||||
|
; - X contains the page offset
|
||||||
|
; - Y contains zero
|
||||||
|
|
||||||
|
jmp @L5
|
||||||
|
|
||||||
|
@L1: lda (ptr2),y
|
||||||
|
sta RAMC_WINDOW,x
|
||||||
|
iny
|
||||||
|
bne @L2
|
||||||
|
inc ptr2+1
|
||||||
|
@L2: inx
|
||||||
|
beq @L4
|
||||||
|
|
||||||
|
; Bump count and repeat
|
||||||
|
|
||||||
|
@L3: inc ptr3
|
||||||
|
bne @L1
|
||||||
|
inc ptr3+1
|
||||||
|
bne @L1
|
||||||
|
rts
|
||||||
|
|
||||||
|
; Bump page register
|
||||||
|
|
||||||
|
@L4: inc tmp1
|
||||||
|
bne @L5
|
||||||
|
inc tmp2
|
||||||
|
@L5: lda tmp1
|
||||||
|
sta RAMC_PAGE_LO
|
||||||
|
lda tmp2
|
||||||
|
sta RAMC_PAGE_HI
|
||||||
|
jmp @L3
|
||||||
|
|
||||||
|
; ------------------------------------------------------------------------
|
||||||
|
; Helper function for COPYFROM and COPYTO: Store the pointer to the request
|
||||||
|
; structure and prepare data for the copy
|
||||||
|
|
||||||
|
setup: sta ptr1
|
||||||
|
stx ptr1+1 ; Save passed pointer
|
||||||
|
|
||||||
|
; Get the page number from the struct and adjust it so that it may be used
|
||||||
|
; with the hardware. That is: lower 6 bits in tmp1, high bits in tmp2.
|
||||||
|
|
||||||
|
ldy #EM_COPY::PAGE+1
|
||||||
|
lda (ptr1),y
|
||||||
|
sta tmp2
|
||||||
|
dey
|
||||||
|
lda (ptr1),y
|
||||||
|
sta tmp1
|
||||||
|
|
||||||
|
; Get the buffer pointer into ptr2
|
||||||
|
|
||||||
|
ldy #EM_COPY::BUF
|
||||||
|
lda (ptr1),y
|
||||||
|
sta ptr2
|
||||||
|
iny
|
||||||
|
lda (ptr1),y
|
||||||
|
sta ptr2+1
|
||||||
|
|
||||||
|
; Get the count, calculate -(count-1) and store it into ptr3
|
||||||
|
|
||||||
|
ldy #EM_COPY::COUNT
|
||||||
|
lda (ptr1),y
|
||||||
|
eor #$FF
|
||||||
|
sta ptr3
|
||||||
|
iny
|
||||||
|
lda (ptr1),y
|
||||||
|
eor #$FF
|
||||||
|
sta ptr3+1
|
||||||
|
|
||||||
|
; Get the page offset into X and clear Y
|
||||||
|
|
||||||
|
ldy #EM_COPY::OFFS
|
||||||
|
lda (ptr1),y
|
||||||
|
tax
|
||||||
|
ldy #$00
|
||||||
|
|
||||||
|
; Done
|
||||||
|
|
||||||
|
rts
|
@ -12,16 +12,12 @@
|
|||||||
#define BUF_SIZE (PAGE_SIZE + PAGE_SIZE/2)
|
#define BUF_SIZE (PAGE_SIZE + PAGE_SIZE/2)
|
||||||
static unsigned buf[BUF_SIZE];
|
static unsigned buf[BUF_SIZE];
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
static void cleanup (void)
|
static void cleanup (void)
|
||||||
/* Remove the driver on exit */
|
/* Remove the driver on exit */
|
||||||
{
|
{
|
||||||
em_unload ();
|
em_unload ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
static void fill (register unsigned* page, register unsigned char count, register unsigned num)
|
static void fill (register unsigned* page, register unsigned char count, register unsigned num)
|
||||||
{
|
{
|
||||||
register unsigned char i;
|
register unsigned char i;
|
||||||
@ -30,8 +26,6 @@ static void fill (register unsigned* page, register unsigned char count, registe
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
static void cmp (unsigned page, register const unsigned* buf,
|
static void cmp (unsigned page, register const unsigned* buf,
|
||||||
register unsigned char count, register unsigned num)
|
register unsigned char count, register unsigned num)
|
||||||
{
|
{
|
||||||
@ -49,6 +43,20 @@ static void cmp (unsigned page, register const unsigned* buf,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const char* em_error(int e)
|
||||||
|
{
|
||||||
|
switch(e)
|
||||||
|
{
|
||||||
|
case EM_ERR_OK: return "ok";
|
||||||
|
case EM_ERR_NO_DRIVER: return "no driver";
|
||||||
|
case EM_ERR_CANNOT_LOAD: return "cannot load";
|
||||||
|
case EM_ERR_INV_DRIVER: return "invalid driver";
|
||||||
|
case EM_ERR_NO_DEVICE: return "no device";
|
||||||
|
case EM_ERR_INSTALLED: return "already installed";
|
||||||
|
}
|
||||||
|
return "unknown";
|
||||||
|
}
|
||||||
|
|
||||||
typedef struct emd_test_s {
|
typedef struct emd_test_s {
|
||||||
char key;
|
char key;
|
||||||
char *displayname;
|
char *displayname;
|
||||||
@ -88,6 +96,7 @@ static emd_test_t drivers[] = {
|
|||||||
{ '7', "C128 VDC (in C64 mode)", "c64-vdc.emd" },
|
{ '7', "C128 VDC (in C64 mode)", "c64-vdc.emd" },
|
||||||
{ '8', "C64DTV himem", "dtv-himem.emd" },
|
{ '8', "C64DTV himem", "dtv-himem.emd" },
|
||||||
{ '9', "65816 extra banks", "c64-65816.emd" },
|
{ '9', "65816 extra banks", "c64-65816.emd" },
|
||||||
|
{ 'k', "Kerberos", "c64-kerberos.emd" },
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__C128__)
|
#if defined(__C128__)
|
||||||
@ -142,7 +151,7 @@ int main (void)
|
|||||||
clrscr ();
|
clrscr ();
|
||||||
Res = em_load_driver (drivers[valid_key].drivername);
|
Res = em_load_driver (drivers[valid_key].drivername);
|
||||||
if (Res != EM_ERR_OK) {
|
if (Res != EM_ERR_OK) {
|
||||||
cprintf ("Error in em_load_driver: %u\r\n", Res);
|
cprintf ("Error in em_load_driver: %u\r\n%s\r\n", Res, em_error(Res));
|
||||||
cprintf ("os: %u, %s\r\n", _oserror, _stroserror (_oserror));
|
cprintf ("os: %u, %s\r\n", _oserror, _stroserror (_oserror));
|
||||||
#ifdef __ATARI__
|
#ifdef __ATARI__
|
||||||
cgetc ();
|
cgetc ();
|
||||||
@ -263,5 +272,4 @@ int main (void)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user