Diff for /np2/io/epsonio.c between versions 1.4 and 1.6

version 1.4, 2004/01/07 06:53:48 version 1.6, 2004/01/13 05:30:58
Line 45  static void IOOUTCALL epsonio_o043d(UINT Line 45  static void IOOUTCALL epsonio_o043d(UINT
                         CPU_ITFBANK = 0;                          CPU_ITFBANK = 0;
                         break;                          break;
         }          }
           (void)port;
 }  }
   
 static void IOOUTCALL epsonio_o043f(UINT port, REG8 dat) {  static void IOOUTCALL epsonio_o043f(UINT port, REG8 dat) {
Line 58  static void IOOUTCALL epsonio_o043f(UINT Line 59  static void IOOUTCALL epsonio_o043f(UINT
                         epsonio.bankioen |= 0x01;                          epsonio.bankioen |= 0x01;
                         break;                          break;
         }          }
           (void)port;
 }  }
   
 static void IOOUTCALL epsonio_oc07(UINT port, REG8 dat) {  static void IOOUTCALL epsonio_oc07(UINT port, REG8 dat) {
Line 88  static void IOOUTCALL epsonio_oc07(UINT  Line 90  static void IOOUTCALL epsonio_oc07(UINT 
                         CopyMemory(mem + 0x1f8000, mem + 0x1c0000, 0x08000);                          CopyMemory(mem + 0x1f8000, mem + 0x1c0000, 0x08000);
                         break;                          break;
         }          }
           (void)port;
 }  }
   
 static REG8 IOINPCALL epsonio_ic03(UINT port) {  static REG8 IOINPCALL epsonio_ic03(UINT port) {
Line 112  void epsonio_reset(void) { Line 115  void epsonio_reset(void) {
   
 void epsonio_bind(void) {  void epsonio_bind(void) {
   
         if (pc.model & PCMODEL_EPSON) {          if (pccore.model & PCMODEL_EPSON) {
                 iocore_attachout(0x043d, epsonio_o043d);                  iocore_attachout(0x043d, epsonio_o043d);
                 iocore_attachout(0x043f, epsonio_o043f);                  iocore_attachout(0x043f, epsonio_o043f);
                 iocore_attachout(0x0c07, epsonio_oc07);                  iocore_attachout(0x0c07, epsonio_oc07);

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


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