Diff for /np2/pccore.h between versions 1.26 and 1.27

version 1.26, 2004/06/04 16:11:02 version 1.27, 2004/06/20 00:56:26
Line 49  typedef struct { Line 49  typedef struct {
         UINT8   BTN_RAPID;          UINT8   BTN_RAPID;
         UINT8   BTN_MODE;          UINT8   BTN_MODE;
   
         BYTE    dipsw[3];          UINT8   dipsw[3];
         UINT8   MOUSERAPID;          UINT8   MOUSERAPID;
   
         UINT8   calendar;          UINT8   calendar;
         UINT8   usefd144;          UINT8   usefd144;
         BYTE    wait[6];          UINT8   wait[6];
   
         // リセット時とかあんまり参照されない奴          // リセット時とかあんまり参照されない奴
         char    model[8];          OEMCHAR model[8];
         UINT    baseclock;          UINT    baseclock;
         UINT    multiple;          UINT    multiple;
   
         BYTE    memsw[8];          UINT8   memsw[8];
   
         UINT8   ITF_WORK;          UINT8   ITF_WORK;
         UINT8   EXTMEM;          UINT8   EXTMEM;
Line 75  typedef struct { Line 75  typedef struct {
         UINT8   SOUND_SW;          UINT8   SOUND_SW;
         UINT8   snd_x;          UINT8   snd_x;
   
         BYTE    snd14opt[3];          UINT8   snd14opt[3];
         UINT8   snd26opt;          UINT8   snd26opt;
         UINT8   snd86opt;          UINT8   snd86opt;
         UINT8   spbopt;          UINT8   spbopt;
Line 84  typedef struct { Line 84  typedef struct {
         UINT8   spb_x;                                                                                                  // ver0.30          UINT8   spb_x;                                                                                                  // ver0.30
   
         UINT8   BEEP_VOL;          UINT8   BEEP_VOL;
         BYTE    vol14[6];          UINT8   vol14[6];
         UINT8   vol_fm;          UINT8   vol_fm;
         UINT8   vol_ssg;          UINT8   vol_ssg;
         UINT8   vol_adpcm;          UINT8   vol_adpcm;
Line 95  typedef struct { Line 95  typedef struct {
         UINT8   mpuopt;          UINT8   mpuopt;
   
         UINT8   pc9861enable;          UINT8   pc9861enable;
         BYTE    pc9861sw[3];          UINT8   pc9861sw[3];
         BYTE    pc9861jmp[6];          UINT8   pc9861jmp[6];
   
         UINT8   fddequip;          UINT8   fddequip;
         UINT8   MOTOR;          UINT8   MOTOR;
Line 104  typedef struct { Line 104  typedef struct {
         UINT8   PROTECTMEM;          UINT8   PROTECTMEM;
         UINT8   hdrvacc;          UINT8   hdrvacc;
   
         char    sasihdd[2][MAX_PATH];                                                                   // ver0.74          OEMCHAR sasihdd[2][MAX_PATH];                                                                   // ver0.74
 #if defined(SUPPORT_SCSI)  #if defined(SUPPORT_SCSI)
         char    scsihdd[4][MAX_PATH];                                                                   // ver0.74          OEMCHAR scsihdd[4][MAX_PATH];                                                                   // ver0.74
 #endif  #endif
         char    fontfile[MAX_PATH];          OEMCHAR fontfile[MAX_PATH];
         char    biospath[MAX_PATH];          OEMCHAR biospath[MAX_PATH];
         char    hdrvroot[MAX_PATH];          OEMCHAR hdrvroot[MAX_PATH];
 } NP2CFG;  } NP2CFG;
   
 typedef struct {  typedef struct {
Line 121  typedef struct { Line 121  typedef struct {
         UINT8   model;          UINT8   model;
         UINT8   hddif;          UINT8   hddif;
         UINT8   extmem;          UINT8   extmem;
         BYTE    dipsw[3];               // リセット時のDIPSW          UINT8   dipsw[3];               // リセット時のDIPSW
         UINT8   rom;          UINT8   rom;
   
         UINT32  sound;          UINT32  sound;
Line 141  enum { Line 141  enum {
 extern "C" {  extern "C" {
 #endif  #endif
   
 extern const char np2version[];  extern const OEMCHAR np2version[];
   
 extern  NP2CFG  np2cfg;  extern  NP2CFG  np2cfg;
 extern  PCCORE  pccore;  extern  PCCORE  pccore;
 extern  BYTE    screenupdate;  extern  UINT8   screenupdate;
 extern  int             soundrenewal;  extern  int             soundrenewal;
 extern  BOOL    drawframe;  extern  BOOL    drawframe;
 extern  UINT    drawcount;  extern  UINT    drawcount;
 extern  BOOL    hardwarereset;  extern  BOOL    hardwarereset;
   
 void getbiospath(char *path, const char *fname, int maxlen);  void getbiospath(OEMCHAR *path, const OEMCHAR *fname, int maxlen);
 void screendisp(NEVENTITEM item);  void screendisp(NEVENTITEM item);
 void screenvsync(NEVENTITEM item);  void screenvsync(NEVENTITEM item);
   

Removed from v.1.26  
changed lines
  Added in v.1.27


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