Diff for /np2/io/gdc_sub.h between versions 1.4 and 1.5

version 1.4, 2004/02/12 17:18:16 version 1.5, 2004/02/14 07:56:51
Line 23  typedef void (*GDCSUBFN)(UINT32 csrw, co Line 23  typedef void (*GDCSUBFN)(UINT32 csrw, co
 extern "C" {  extern "C" {
 #endif  #endif
   
   #if !defined(MEMOPTIMIZE) || (MEMOPTIMIZE < 2)
   extern const UINT8 gdcbitreverse[0x100];
   #define GDCPATREVERSE(d)                gdcbitreverse[(d) & 0xff]
   #else
   REG8 gdcbitreverse(REG8 data);
   #define GDCPATREVERSE(d)                gdcbitreverse(d)
   #endif
   
 void gdcslavewait(NEVENTITEM item);  void gdcslavewait(NEVENTITEM item);
   
 void gdcsub_init(void);  void gdcsub_init(void);
 void gdcsub_null(UINT32 csrw, const GDCVECT *vect, REG16 pat, REG8 ope);  void gdcsub_vect0(UINT32 csrw, const GDCVECT *vect, REG16 pat, REG8 ope);
 void gdcsub_line(UINT32 csrw, const GDCVECT *vect, REG16 pat, REG8 ope);  void gdcsub_vectl(UINT32 csrw, const GDCVECT *vect, REG16 pat, REG8 ope);
 void gdcsub_box(UINT32 csrw, const GDCVECT *vect, REG16 pat, REG8 ope);  void gdcsub_vectt(UINT32 csrw, const GDCVECT *vect, REG16 pat, REG8 ope);
 void gdcsub_circle(UINT32 csrw, const GDCVECT *vect, REG16 pat, REG8 ope);  void gdcsub_vectc(UINT32 csrw, const GDCVECT *vect, REG16 pat, REG8 ope);
 void gdcsub_txt(UINT32 csrw, const GDCVECT *vect, REG16 pat, REG8 ope);  void gdcsub_vectr(UINT32 csrw, const GDCVECT *vect, REG16 pat, REG8 ope);
   
 void gdcsub_text(UINT32 csrw, const GDCVECT *vect, const BYTE *pat, REG8 ope);  void gdcsub_text(UINT32 csrw, const GDCVECT *vect, const BYTE *pat, REG8 ope);
 void gdcsub_write(void);  void gdcsub_write(void);

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


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