Diff for /np2/vram/vram.c between versions 1.1.1.1 and 1.6

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);
 }  }
   

Removed from v.1.1.1.1  
changed lines
  Added in v.1.6


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