Diff for /np2/io/sysport.c between versions 1.2 and 1.4

version 1.2, 2003/12/08 00:55:32 version 1.4, 2007/11/11 13:54:14
Line 42  static void IOOUTCALL sysp_o37(UINT port Line 42  static void IOOUTCALL sysp_o37(UINT port
 static REG8 IOINPCALL sysp_i31(UINT port) {  static REG8 IOINPCALL sysp_i31(UINT port) {
   
         (void)port;          (void)port;
         return(np2cfg.dipsw[1]);          return(pccore.dipsw[1]);
 }  }
   
 static REG8 IOINPCALL sysp_i33(UINT port) {  static REG8 IOINPCALL sysp_i33(UINT port) {
   
         REG8    ret;          REG8    ret;
   
         ret = ((~np2cfg.dipsw[0]) & 1) << 3;          ret = ((~pccore.dipsw[0]) & 1) << 3;
         ret |= rs232c_stat();          ret |= rs232c_stat();
         ret |= uPD4990.cdat;          ret |= uPD4990.cdat;
         (void)port;          (void)port;
Line 71  static const IOOUT syspo31[4] = { Line 71  static const IOOUT syspo31[4] = {
 static const IOINP syspi31[4] = {  static const IOINP syspi31[4] = {
                                         sysp_i31,       sysp_i33,       sysp_i35,       NULL};                                          sysp_i31,       sysp_i33,       sysp_i35,       NULL};
   
 void systemport_reset(void) {  void systemport_reset(const NP2CFG *pConfig) {
   
         sysport.c = 0xf9;          sysport.c = 0xf9;
         beep_oneventset();          beep_oneventset();
   
           (void)pConfig;
 }  }
   
 void systemport_bind(void) {  void systemport_bind(void) {

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


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