--- np2/lio/lio.c 2004/02/20 16:20:41 1.7 +++ np2/lio/lio.c 2004/06/12 15:32:53 1.19 @@ -2,101 +2,101 @@ #include "cpucore.h" #include "pccore.h" #include "iocore.h" +#include "gdc_sub.h" #include "bios.h" #include "biosmem.h" #include "vram.h" #include "lio.h" - - -static _LIOWORK liowork; +#include "lio.res" void lio_initialize(void) { - UINT i; - - mem[0xf9900] = 0x11; - for (i=0; i<0x11; i++) { - mem[0xf9904 + i*4] = 0xa0 + i; - mem[0xf9905 + i*4] = 0x00; - SETBIOSMEM16(0xf9906 + i*4, 0x100 + i*4); - SETBIOSMEM32(0xf9a00 + i*4, 0xcf90fb90); - } - mem[0xf9944] = 0xce; + CopyMemory(mem + (LIO_SEGMENT << 4), liorom, sizeof(liorom)); } void bios_lio(REG8 cmd) { - LIOWORK lio; + _GLIO lio; + UINT8 ret; - TRACEOUT(("lio command %.2x", cmd)); - - lio = &liowork; - lio->wait = 500; +// TRACEOUT(("lio command %.2x", cmd)); + MEML_READSTR(CPU_DS, 0x0620, &lio.work, sizeof(lio.work)); + lio.palmode = MEML_READ8(CPU_DS, 0x0a08); + lio.wait = 0; switch(cmd) { case 0x00: // a0: GINIT - CPU_AH = lio_ginit(lio); + ret = lio_ginit(&lio); break; case 0x01: // a1: GSCREEN - CPU_AH = lio_gscreen(lio); + ret = lio_gscreen(&lio); break; case 0x02: // a2: GVIEW - CPU_AH = lio_gview(lio); + ret = lio_gview(&lio); break; case 0x03: // a3: GCOLOR1 - CPU_AH = lio_gcolor1(lio); + ret = lio_gcolor1(&lio); break; case 0x04: // a4: GCOLOR2 - CPU_AH = lio_gcolor2(lio); + ret = lio_gcolor2(&lio); break; case 0x05: // a5: GCLS - CPU_AH = lio_gcls(lio); + ret = lio_gcls(&lio); break; case 0x06: // a6: GPSET - CPU_AH = lio_gpset(lio); + ret = lio_gpset(&lio); break; case 0x07: // a7: GLINE - CPU_AH = lio_gline(lio); + ret = lio_gline(&lio); break; case 0x08: // a8: GCIRCLE + ret = lio_gcircle(&lio); break; - case 0x09: // a9: GPAINT1 - break; +// case 0x09: // a9: GPAINT1 +// break; - case 0x0a: // aa: GPAINT2 - break; +// case 0x0a: // aa: GPAINT2 +// break; case 0x0b: // ab: GGET + ret = lio_gget(&lio); break; case 0x0c: // ac: GPUT1 - CPU_AH = lio_gput1(lio); + ret = lio_gput1(&lio); break; case 0x0d: // ad: GPUT2 - CPU_AH = lio_gput2(lio); + ret = lio_gput2(&lio); break; - case 0x0e: // ae: GROLL - break; +// case 0x0e: // ae: GROLL +// break; case 0x0f: // af: GPOINT2 + ret = lio_gpoint2(&lio); break; - case 0x10: // ce: GCOPY +// case 0x10: // ce: GCOPY +// break; + + default: + ret = LIO_SUCCESS; break; } - gdcsub_setslavewait(lio->wait); - TRACEOUT(("lio wait = %d", lio->wait)); + CPU_AH = ret; + if (lio.wait) { + gdcsub_setslavewait(lio.wait); + } } @@ -104,142 +104,208 @@ void bios_lio(REG8 cmd) { const UINT32 lioplaneadrs[4] = {VRAM_B, VRAM_R, VRAM_G, VRAM_E}; -void lio_updaterange(LIOWORK lio) { +void lio_updatedraw(GLIO lio) { - lio->range.x1 = max(lio->gview.x1, 0); - lio->range.y1 = max(lio->gview.y1, 0); - lio->range.x2 = min(lio->gview.x2, 639); - lio->range.y2 = min(lio->gview.x2, (lio->scrn.lines - 1)); + UINT8 flag; + UINT8 colorbit; + SINT16 maxline; + SINT16 tmp; + + flag = 0; + colorbit = 3; + maxline = 399; + if (lio->palmode == 2) { + flag |= LIODRAW_4BPP; + colorbit = 4; + } + switch(lio->work.scrnmode) { + case 0: + if (lio->work.pos & 1) { + flag |= LIODRAW_UPPER; + } + maxline = 199; + break; + + case 1: + flag |= lio->work.pos % colorbit; + flag |= LIODRAW_MONO; + if (lio->work.pos >= colorbit) { + flag |= LIODRAW_UPPER; + } + maxline = 199; + break; + + case 2: + flag |= lio->work.pos % colorbit; + flag |= LIODRAW_MONO; + break; + } + lio->draw.flag = flag; + lio->draw.palmax = 1 << colorbit; + + tmp = (SINT16)LOADINTELWORD(lio->work.viewx1); + lio->draw.x1 = max(tmp, 0); + tmp = (SINT16)LOADINTELWORD(lio->work.viewy1); + lio->draw.y1 = max(tmp, 0); + tmp = (SINT16)LOADINTELWORD(lio->work.viewx2); + lio->draw.x2 = min(tmp, 639); + tmp = (SINT16)LOADINTELWORD(lio->work.viewy2); + lio->draw.y2 = min(tmp, maxline); + if (!gdcs.access) { + lio->draw.base = 0; + lio->draw.bank = 0; + lio->draw.sbit = 0x01; + } + else { + lio->draw.base = VRAM_STEP; + lio->draw.bank = 1; + lio->draw.sbit = 0x02; + } } // ---- -static const BYTE bit_l[8] = {0xff, 0x7f, 0x3f, 0x1f, 0x0f, 0x07, 0x03, 0x01}; -static const BYTE bit_r[8] = {0x00, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe}; +static void pixed8(const _GLIO *lio, UINT addr, REG8 bit, REG8 pal) { -static void pixed8(const _LIOWORK *lio, UINT32 vadrs, BYTE bit, REG8 pal) { + BYTE *ptr; - if (lio->scrn.plane & 0x80) { + addr = LOW15(addr); + vramupdate[addr] |= lio->draw.sbit; + ptr = mem + lio->draw.base + addr; + if (!(lio->draw.flag & LIODRAW_MONO)) { if (pal & 1) { - mem[vadrs + VRAM_B] |= bit; + ptr[VRAM_B] |= bit; } else { - mem[vadrs + VRAM_B] &= ~bit; + ptr[VRAM_B] &= ~bit; } if (pal & 2) { - mem[vadrs + VRAM_R] |= bit; + ptr[VRAM_R] |= bit; } else { - mem[vadrs + VRAM_R] &= ~bit; + ptr[VRAM_R] &= ~bit; } if (pal & 4) { - mem[vadrs + VRAM_G] |= bit; + ptr[VRAM_G] |= bit; } else { - mem[vadrs + VRAM_G] &= ~bit; - } - if (pal & 8) { - mem[vadrs + VRAM_E] |= bit; + ptr[VRAM_G] &= ~bit; } - else { - mem[vadrs + VRAM_E] &= ~bit; + if (lio->draw.flag & LIODRAW_4BPP) { + if (pal & 8) { + ptr[VRAM_E] |= bit; + } + else { + ptr[VRAM_E] &= ~bit; + } } } else { - vadrs += lioplaneadrs[lio->scrn.plane & 3]; + ptr += lioplaneadrs[lio->draw.flag & LIODRAW_PMASK]; if (pal) { - mem[vadrs] |= bit; + *ptr |= bit; } else { - mem[vadrs] &= ~bit; + *ptr &= ~bit; } } } -void lio_pset(const _LIOWORK *lio, SINT16 x, SINT16 y, REG8 pal) { +void lio_pset(const _GLIO *lio, SINT16 x, SINT16 y, REG8 pal) { - UINT32 adrs; + UINT addr; BYTE bit; - if ((lio->range.x1 > x) || (lio->range.x2 < x) || - (lio->range.y1 > y) || (lio->range.y2 < y)) { + if ((lio->draw.x1 > x) || (lio->draw.x2 < x) || + (lio->draw.y1 > y) || (lio->draw.y2 < y)) { return; } - adrs = (y * 80) + (x >> 3); + addr = (y * 80) + (x >> 3); bit = 0x80 >> (x & 7); - if (lio->scrn.top) { - adrs += 16000; - } - if (!lio->scrn.bank) { - vramupdate[adrs] |= 1; - gdcs.grphdisp |= 1; - } - else { - vramupdate[adrs] |= 2; - gdcs.grphdisp |= 2; - adrs += VRAM_STEP; + if (lio->draw.flag & LIODRAW_UPPER) { + addr += 16000; } - pixed8(lio, adrs, bit, pal); + gdcs.grphdisp |= lio->draw.sbit; + pixed8(lio, addr, bit, pal); } -void lio_line(const _LIOWORK *lio, SINT16 x1, SINT16 x2, SINT16 y, REG8 pal) { +#if 0 +void lio_line(const _GLIO *lio, SINT16 x1, SINT16 x2, SINT16 y, REG8 pal) { - UINT adrs; - UINT32 vadrs; - BYTE bit, dbit, sbit; + UINT addr; + BYTE bit, dbit; SINT16 width; - if ((lio->range.y1 > y) || (lio->range.y2 < y)) { + if ((lio->draw.y1 > y) || (lio->draw.y2 < y)) { return; } - if (lio->range.x1 > x1) { - x1 = lio->range.x1; + if (lio->draw.x1 > x1) { + x1 = lio->draw.x1; } - if (lio->range.x2 < x2) { - x2 = lio->range.x2; + if (lio->draw.x2 < x2) { + x2 = lio->draw.x2; } width = x2 - x1 + 1; if (width <= 0) { return; } - adrs = (y * 80) + (x1 >> 3); + addr = (y * 80) + (x1 >> 3); bit = 0x80 >> (x1 & 7); - if (lio->scrn.top) { - adrs += 16000; - } - if (!lio->scrn.bank) { - vadrs = adrs; - sbit = 1; - gdcs.grphdisp |= 1; - } - else { - vadrs = adrs + VRAM_STEP; - sbit = 2; - gdcs.grphdisp |= 2; + if (lio->draw.flag & LIODRAW_UPPER) { + addr += 16000; } - + gdcs.grphdisp |= lio->draw.sbit; dbit = 0; - while(bit && width--) { + while((bit) && (width)) { dbit |= bit; bit >>= 1; + width--; } - pixed8(lio, vadrs++, dbit, pal); - vramupdate[adrs++] |= sbit; + pixed8(lio, addr, dbit, pal); + addr++; while(width >= 8) { width -= 8; - pixed8(lio, vadrs++, 0xff, pal); - vramupdate[adrs++] |= sbit; + pixed8(lio, addr, 0xff, pal); + addr++; } dbit = 0; bit = 0x80; - while(bit && width--) { + while((bit) && (width)) { dbit |= bit; bit >>= 1; + width--; } if (dbit) { - pixed8(lio, vadrs, dbit, pal); - vramupdate[adrs] |= sbit; + pixed8(lio, addr, dbit, pal); + } +} +#endif + + +#if 0 +void lio_look(UINT vect) { + + BYTE work[16]; + + TRACEOUT(("lio command %.2x [%.4x:%.4x]", vect, CPU_CS, CPU_IP)); + if (vect == 0xa7) { + i286_memstr_read(CPU_DS, CPU_BX, work, 16); + TRACEOUT(("LINE %d %d %d %d - %d %d / %d : %.2x %.2x", + LOADINTELWORD(work), + LOADINTELWORD(work+2), + LOADINTELWORD(work+4), + LOADINTELWORD(work+6), + work[8], work[9], work[10], work[11], work[12])); + } + else if (vect == 0xad) { + i286_memstr_read(CPU_DS, CPU_BX, work, 16); + TRACEOUT(("GPUT2 x=%d / y=%d / chr=%.4x / %d / %d %d %d", + LOADINTELWORD(work), + LOADINTELWORD(work+2), + LOADINTELWORD(work+4), + work[6], work[7], work[8], work[9])); } } +#endif