Diff for /np2/io/printif.c between versions 1.6 and 1.8

version 1.6, 2004/01/13 05:30:58 version 1.8, 2007/11/03 00:00:20
Line 29  static REG8 IOINPCALL prt_i42(UINT port) Line 29  static REG8 IOINPCALL prt_i42(UINT port)
         REG8    ret;          REG8    ret;
   
         ret = 0x84;          ret = 0x84;
         if (pccore.cpumode & CPUMODE_8MHz) {          if (pccore.cpumode & CPUMODE_8MHZ) {
                 ret |= 0x20;                  ret |= 0x20;
         }          }
         if (np2cfg.dipsw[0] & 4) {          if (np2cfg.dipsw[0] & 4) {
Line 61  static const IOOUT prto40[4] = { Line 61  static const IOOUT prto40[4] = {
 static const IOINP prti40[4] = {  static const IOINP prti40[4] = {
                                         NULL,           prt_i42,        NULL,           NULL};                                          NULL,           prt_i42,        NULL,           NULL};
   
 void printif_reset(void) {  void printif_reset(const NP2CFG *pConfig) {
   
         commng_destroy(cm_prt);          commng_destroy(cm_prt);
         cm_prt = NULL;          cm_prt = NULL;
   
           (void)pConfig;
 }  }
   
 void printif_bind(void) {  void printif_bind(void) {

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


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