Diff for /xmil/vram/vram.h between versions 1.3 and 1.4

version 1.3, 2004/08/04 15:18:26 version 1.4, 2004/08/07 10:53:01
Line 30  enum { Line 30  enum {
         X1KNJ_ULINE             = 0x20          X1KNJ_ULINE             = 0x20
 };  };
   
   enum {
           UPDATE_TRAM             = (1 << 5),
           UPDATE_VRAM0    = (1 << 6),
           UPDATE_VRAM1    = (1 << 7),
           UPDATE_VRAM             = UPDATE_VRAM0 | UPDATE_VRAM1,
           UPDATE_TVRAM    = UPDATE_VRAM0 | UPDATE_VRAM1 | UPDATE_TRAM
   };
   
   
 #ifdef __cplusplus  #ifdef __cplusplus
 extern "C" {  extern "C" {
Line 37  extern "C" { Line 45  extern "C" {
   
 extern  UINT8   GRP_RAM[0x20000];  extern  UINT8   GRP_RAM[0x20000];
 extern  UINT8   tram[0x01800];  extern  UINT8   tram[0x01800];
   extern  UINT8   updatetmp[0x800+0x101];
   
 #ifdef __cplusplus  #ifdef __cplusplus
 }  }

Removed from v.1.3  
changed lines
  Added in v.1.4


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