--- np2/io/iocore.c 2004/03/06 18:25:36 1.11 +++ np2/io/iocore.c 2004/03/19 00:30:01 1.13 @@ -434,6 +434,9 @@ static const IOCBFN resetfn[] = { #if !defined(CPUCORE_IA32) emsio_reset, #endif +#if defined(SUPPORT_PC9821) + pcidev_reset, +#endif }; static const IOCBFN bindfn[] = { @@ -453,6 +456,9 @@ static const IOCBFN bindfn[] = { #if !defined(CPUCORE_IA32) emsio_bind, #endif +#if defined(SUPPORT_PC9821) + pcidev_bind, +#endif }; @@ -479,6 +485,7 @@ void IOOUTCALL iocore_out8(UINT port, RE IOFUNC iof; +// VERBOSE(("iocore_out8(%x, %x)", port, dat)); CPU_REMCLOCK -= iocore.busclock; iof = iocore.base[(port >> 8) & 0xff]; iof->ioout[port & 0xff](port, dat); @@ -488,6 +495,7 @@ REG8 IOINPCALL iocore_inp8(UINT port) { IOFUNC iof; +// VERBOSE(("iocore_inp8(%x)", port)); CPU_REMCLOCK -= iocore.busclock; iof = iocore.base[(port >> 8) & 0xff]; return(iof->ioinp[port & 0xff](port));