Diff for /np2/vram/vram.c between versions 1.5 and 1.7

version 1.5, 2004/02/29 03:10:03 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)  #if defined(SUPPORT_PC9821)
         BYTE    vramex[0x80000];          UINT8   vramex[0x80000];
 #endif  #endif
   
   
 void vram_initialize(void) {  void vram_initialize(void) {
   
         ZeroMemory(&vramop, sizeof(vramop));          ZeroMemory(&vramop, sizeof(vramop));
         i286_vram_dispatch(0);          MEMM_VRAM(0);
 }  }
   

Removed from v.1.5  
changed lines
  Added in v.1.7


RetroPC.NET-CVS <cvs@retropc.net>