Diff for /np2/io/np2sysp.c between versions 1.8 and 1.9

version 1.8, 2004/01/07 06:53:48 version 1.9, 2004/01/07 08:33:00
Line 163  static void cmd_sxsibios(const void *arg Line 163  static void cmd_sxsibios(const void *arg
         CPU_BP = org_bp;          CPU_BP = org_bp;
         CPU_ES = org_es;          CPU_ES = org_es;
         ES_BASE = org_esbase;          ES_BASE = org_esbase;
   
           (void)arg1;
           (void)arg2;
 }  }
   
   
Line 277  static BOOL np2syspcmp(const char *p) { Line 280  static BOOL np2syspcmp(const char *p) {
 static void IOOUTCALL np2sysp_o7ed(UINT port, REG8 dat) {  static void IOOUTCALL np2sysp_o7ed(UINT port, REG8 dat) {
   
         np2sysp.outval = (dat << 24) + (np2sysp.outval >> 8);          np2sysp.outval = (dat << 24) + (np2sysp.outval >> 8);
           (void)port;
 }  }
   
 static void IOOUTCALL np2sysp_o7ef(UINT port, REG8 dat) {  static void IOOUTCALL np2sysp_o7ef(UINT port, REG8 dat) {
Line 305  static REG8 IOINPCALL np2sysp_i7ed(UINT  Line 309  static REG8 IOINPCALL np2sysp_i7ed(UINT 
   
         ret = (REG8)(np2sysp.inpval & 0xff);          ret = (REG8)(np2sysp.inpval & 0xff);
         np2sysp.inpval = (ret << 24) + (np2sysp.inpval >> 8);          np2sysp.inpval = (ret << 24) + (np2sysp.inpval >> 8);
           (void)port;
         return(ret);          return(ret);
 }  }
   

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


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