|
|
| version 1.1.1.1, 2003/10/16 17:58:13 | version 1.6, 2005/02/07 14:46:13 |
|---|---|
| Line 1 | Line 1 |
| #include "compiler.h" | #include "compiler.h" |
| #include "memory.h" | #include "cpucore.h" |
| #include "vram.h" | #include "vram.h" |
| const UINT32 vramplaneseg[4] = {VRAM_E, VRAM_B, VRAM_R, VRAM_G}; | _VRAMOP vramop; |
| UINT8 tramupdate[0x1000]; | |
| UINT8 vramupdate[0x8000]; | |
| #if defined(SUPPORT_PC9821) | |
| UINT8 vramex[0x80000]; | |
| #endif | |
| VRAM_T vramop; | |
| BYTE tramupdate[0x1000]; | |
| BYTE vramupdate[0x8000]; | |
| void vram_initialize(void) { | |
| void vram_init(void) { | ZeroMemory(&vramop, sizeof(vramop)); |
| vramop.operate = 0; | |
| i286_vram_dispatch(0); | i286_vram_dispatch(0); |
| } | } |