Diff for /np2/io/gdc.h between versions 1.9 and 1.13

version 1.9, 2004/02/29 00:57:06 version 1.13, 2004/03/22 05:38:47
Line 26  typedef struct { Line 26  typedef struct {
         UINT8           vsyncint;          UINT8           vsyncint;
         UINT8           display;          UINT8           display;
         UINT8           bitac;          UINT8           bitac;
         UINT8           reserved[2];          UINT8           ff2;
           UINT8           reserved;
         int                     analog;          int                     analog;
         int                     palnum;          int                     palnum;
         UINT8           degpal[4];          UINT8           degpal[4];
Line 35  typedef struct { Line 36  typedef struct {
         UINT32          vsyncclock;          UINT32          vsyncclock;
         UINT32          rasterclock;          UINT32          rasterclock;
         UINT32          hsyncclock;          UINT32          hsyncclock;
   
   #if defined(SUPPORT_PC9821)
           UINT8           anareg[16*3 + 256*4];
   #endif
 } _GDC, *GDC;  } _GDC, *GDC;
   
 typedef struct {  typedef struct {
Line 65  enum { Line 70  enum {
   
         GDCANALOG_16            = 0,          GDCANALOG_16            = 0,
         GDCANALOG_256           = 1,          GDCANALOG_256           = 1,
           GDCANALOG_256E          = 2,
   
         GDCDISP_PLAZMA          = 0,          GDCDISP_PLAZMA          = 0,
         GDCDISP_ANALOG          = 1,          GDCDISP_ANALOG          = 1,
Line 87  void gdc_forceready(int id); Line 93  void gdc_forceready(int id);
 void gdc_paletteinit(void);  void gdc_paletteinit(void);
   
 void gdc_setdegitalpal(int color, REG8 value);  void gdc_setdegitalpal(int color, REG8 value);
 void gdc_setanalogpal(int color, int rgb, REG8 value);  
 void gdc_setdegpalpack(int color, REG8 value);  void gdc_setdegpalpack(int color, REG8 value);
   void gdc_setanalogpal(int color, int rgb, REG8 value);
   void gdc_setanalogpalall(const UINT16 *paltbl);
   
   #if defined(SUPPORT_PC9821)
   void gdc_analogext(BOOL extend);
   #endif
   
   void gdc_biosreset(void);
 void gdc_updateclock(void);  void gdc_updateclock(void);
 void gdc_restorekacmode(void);  void gdc_restorekacmode(void);
   

Removed from v.1.9  
changed lines
  Added in v.1.13


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