Diff for /np2/io/np2sysp.c between versions 1.20 and 1.24

version 1.20, 2005/03/02 04:28:17 version 1.24, 2007/11/11 12:46:07
Line 110  static void np2sysp_multiple(const void  Line 110  static void np2sysp_multiple(const void 
   
 static void np2sysp_hwreset(const void *arg1, long arg2) {  static void np2sysp_hwreset(const void *arg1, long arg2) {
   
         hardwarereset = TRUE;          pcstat.hardwarereset = TRUE;
         (void)arg1;          (void)arg1;
         (void)arg2;          (void)arg2;
 }  }
Line 195  static BRESULT np2syspcmp(const char *p) Line 195  static BRESULT np2syspcmp(const char *p)
         int             len;          int             len;
         int             pos;          int             pos;
   
         len = STRLEN(p);          len = (int)STRLEN(p);
         if (!len) {          if (!len) {
                 return(FAILURE);                  return(FAILURE);
         }          }
Line 265  static void IOOUTCALL np2sysp_o0e9(UINT  Line 265  static void IOOUTCALL np2sysp_o0e9(UINT 
         APPDEVOUT(dat);          APPDEVOUT(dat);
         (void)port;          (void)port;
 }  }
   
   static REG8 IOINPCALL np2sysp_i0e9(UINT port) {
   
           return((UINT8)port);
   }
 #endif  #endif
   
   
 // ---- I/F  // ---- I/F
   
 void np2sysp_reset(void) {  void np2sysp_reset(const NP2CFG *pConfig) {
   
         ZeroMemory(&np2sysp, sizeof(np2sysp));          ZeroMemory(&np2sysp, sizeof(np2sysp));
   
           (void)pConfig;
 }  }
   
 void np2sysp_bind(void) {  void np2sysp_bind(void) {
Line 284  void np2sysp_bind(void) { Line 291  void np2sysp_bind(void) {
   
 #if defined(NP2APPDEV)  #if defined(NP2APPDEV)
         iocore_attachout(0x00e9, np2sysp_o0e9);          iocore_attachout(0x00e9, np2sysp_o0e9);
           iocore_attachinp(0x00e9, np2sysp_i0e9);
 #endif  #endif
 }  }
   

Removed from v.1.20  
changed lines
  Added in v.1.24


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