--- np2/io/cgrom.c 2003/12/08 00:55:32 1.4 +++ np2/io/cgrom.c 2004/06/17 10:09:46 1.12 @@ -1,5 +1,5 @@ #include "compiler.h" -#include "memory.h" +#include "cpucore.h" #include "pccore.h" #include "iocore.h" #include "font.h" @@ -7,34 +7,51 @@ static void cgwindowset(CGROM cr) { + UINT low; + UINT high; int code; - cgwindow.low = 0x7fff0; cgwindow.writable &= ~1; + low = 0x7fff0; if (grcg.chip >= 2) { if (!(cr->code & 0xff00)) { - cgwindow.high = 0x80000 + (cr->code << 4); + high = 0x80000 + (cr->code << 4); + if (!(gdc.mode1 & 8)) { + high += 0x2000; + } } else { code = cr->code & 0x007f; - cgwindow.high = (cr->code & 0x7f7f) << 4; + high = (cr->code & 0x7f7f) << 4; if ((code >= 0x56) && (code < 0x58)) { cgwindow.writable |= 1; - cgwindow.high += cr->lr; + high += cr->lr; + } + else if ((code >= 0x09) && (code < 0x0c)) { // ver0.78 + if (cr->lr) { + high = low; + } } else if (((code >= 0x0c) && (code < 0x10)) || ((code >= 0x58) && (code < 0x60))) { - cgwindow.high += cr->lr; + high += cr->lr; } - else if ((code < 0x08) || (code >= 0x10)) { - cgwindow.low = cgwindow.high; - cgwindow.high += 0x800; + else { + low = high; + high += 0x800; } } } else { - cgwindow.high = cgwindow.low; + high = low; } +#if !defined(CGWND_FONTPTR) + cgwindow.low = low; + cgwindow.high = high; +#else + cgwindow.fontlow = fontrom + low; + cgwindow.fonthigh = fontrom + high; +#endif } @@ -68,7 +85,7 @@ static void IOOUTCALL cgrom_oa5(UINT por CGROM cr; cr = &cgrom; - cr->line = dat & 0x0f; + cr->line = dat & 0x1f; cr->lr = ((~dat) & 0x20) << 6; cgwindowset(cr); (void)port; @@ -82,7 +99,7 @@ static void IOOUTCALL cgrom_oa9(UINT por cr = &cgrom; if ((cr->code & 0x007e) == 0x0056) { fontrom[((cr->code & 0x7f7f) << 4) + - cr->lr + cr->line] = (UINT8)dat; + cr->lr + (cr->line & 0x0f)] = (UINT8)dat; cgwindow.writable |= 0x80; } (void)port; @@ -92,19 +109,29 @@ static REG8 IOINPCALL cgrom_ia9(UINT por CGROM cr; const BYTE *ptr; + int type; cr = &cgrom; ptr = fontrom; - if (cr->code & 0xff00) { + type = cr->code & 0x00ff; + if ((type >= 0x09) && (type < 0x0c)) { // ver0.78 + if (!cr->lr) { + ptr += (cr->code & 0x7f7f) << 4; + return(ptr[cr->line & 0x0f]); + } + } + else if (cr->code & 0xff00) { ptr += (cr->code & 0x7f7f) << 4; ptr += cr->lr; + return(ptr[cr->line & 0x0f]); } - else { + else if (!(cr->line & 0x10)) { // Ⱦ³Ñ ptr += 0x80000; ptr += cr->code << 4; + return(ptr[cr->line]); } (void)port; - return(ptr[cr->line]); + return(0); } @@ -124,8 +151,13 @@ void cgrom_reset(void) { cgw = &cgwindow; ZeroMemory(cgw, sizeof(cgrom)); +#if !defined(CGWND_FONTPTR) cgw->low = 0x7fff0; cgw->high = 0x7fff0; +#else + cgw->fontlow = fontrom + 0x7fff0; + cgw->fonthigh = fontrom + 0x7fff0; +#endif cgw->writable = 0; }