Diff for /np2/io/np2sysp.c between versions 1.19 and 1.23

version 1.19, 2005/02/27 15:07:36 version 1.23, 2007/11/03 00:00:20
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 266  static void IOOUTCALL np2sysp_o0e9(UINT  Line 266  static void IOOUTCALL np2sysp_o0e9(UINT 
         (void)port;          (void)port;
 }  }
   
 static void IOOUTCALL np2sysp_o0eb(UINT port, REG8 dat) {  static REG8 IOINPCALL np2sysp_i0e9(UINT port) {
   
         TRACEOUT(("mask %x", CPU_ADRSMASK));          return((UINT8)port);
         TRACEOUT(("%s", debugsub_regs()));  
         (void)port;  
         (void)dat;  
 }  }
 #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 292  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_attachout(0x00eb, np2sysp_o0eb);          iocore_attachinp(0x00e9, np2sysp_i0e9);
 #endif  #endif
 }  }
   

Removed from v.1.19  
changed lines
  Added in v.1.23


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