|
|
| version 1.4, 2004/02/20 15:20:30 | version 1.7, 2005/05/20 13:59:48 |
|---|---|
| Line 3 | Line 3 |
| #include "vram.h" | #include "vram.h" |
| VRAM_T vramop; | _VRAMOP vramop; |
| BYTE tramupdate[0x1000]; | UINT8 tramupdate[0x1000]; |
| BYTE vramupdate[0x8000]; | UINT8 vramupdate[0x8000]; |
| #if defined(SUPPORT_PC9821) | |
| UINT8 vramex[0x80000]; | |
| #endif | |
| void vram_initialize(void) { | void vram_initialize(void) { |
| vramop.operate = 0; | ZeroMemory(&vramop, sizeof(vramop)); |
| i286_vram_dispatch(0); | MEMM_VRAM(0); |
| } | } |