diff options
author | 2018-09-23 00:51:57 +0100 | |
---|---|---|
committer | 2018-09-23 00:56:29 +0100 | |
commit | f604bed06829ce8781113d9cf779377b4b31df4d (patch) | |
tree | fff8fb70566d2baeffea461445bc08c25faf3287 /src/devices/cpu/nec | |
parent | 3af1087df91aba40cffdb1f34c818ff62853ea6e (diff) |
space, space, space, space, space, space, space, space, mem_mask (nw)
Diffstat (limited to 'src/devices/cpu/nec')
-rw-r--r-- | src/devices/cpu/nec/v53.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/cpu/nec/v53.cpp b/src/devices/cpu/nec/v53.cpp index 5abd00210c9..5b31c6bcb7e 100644 --- a/src/devices/cpu/nec/v53.cpp +++ b/src/devices/cpu/nec/v53.cpp @@ -277,11 +277,11 @@ void v53_base_device::install_peripheral_io() if (IOAG) // 8-bit { - space(AS_IO).install_readwrite_handler(base+0x00, base+0x01, read8_delegate(FUNC(pic8259_device::read), (pic8259_device*)m_v53icu), write8_delegate(FUNC(pic8259_device::write), (pic8259_device*)m_v53icu), 0xffff); + space(AS_IO).install_readwrite_handler(base+0x00, base+0x01, read8sm_delegate(FUNC(pic8259_device::read), (pic8259_device*)m_v53icu), write8sm_delegate(FUNC(pic8259_device::write), (pic8259_device*)m_v53icu), 0xffff); } else { - space(AS_IO).install_readwrite_handler(base+0x00, base+0x03, read8_delegate(FUNC(pic8259_device::read), (pic8259_device*)m_v53icu), write8_delegate(FUNC(pic8259_device::write), (pic8259_device*)m_v53icu), 0x00ff); + space(AS_IO).install_readwrite_handler(base+0x00, base+0x03, read8sm_delegate(FUNC(pic8259_device::read), (pic8259_device*)m_v53icu), write8sm_delegate(FUNC(pic8259_device::write), (pic8259_device*)m_v53icu), 0x00ff); } } @@ -352,15 +352,15 @@ WRITE8_MEMBER(v53_base_device::scu_simk_w) /*** TCU ***/ -WRITE8_MEMBER(v53_base_device::tmu_tct0_w) { m_v53tcu->write(space, 0, data); } -WRITE8_MEMBER(v53_base_device::tmu_tct1_w) { m_v53tcu->write(space, 1, data); } -WRITE8_MEMBER(v53_base_device::tmu_tct2_w) { m_v53tcu->write(space, 2, data); } -WRITE8_MEMBER(v53_base_device::tmu_tmd_w) { m_v53tcu->write(space, 3, data); } +WRITE8_MEMBER(v53_base_device::tmu_tct0_w) { m_v53tcu->write(0, data); } +WRITE8_MEMBER(v53_base_device::tmu_tct1_w) { m_v53tcu->write(1, data); } +WRITE8_MEMBER(v53_base_device::tmu_tct2_w) { m_v53tcu->write(2, data); } +WRITE8_MEMBER(v53_base_device::tmu_tmd_w) { m_v53tcu->write(3, data); } -READ8_MEMBER(v53_base_device::tmu_tst0_r) { return m_v53tcu->read(space, 0); } -READ8_MEMBER(v53_base_device::tmu_tst1_r) { return m_v53tcu->read(space, 1); } -READ8_MEMBER(v53_base_device::tmu_tst2_r) { return m_v53tcu->read(space, 2); } +READ8_MEMBER(v53_base_device::tmu_tst0_r) { return m_v53tcu->read(0); } +READ8_MEMBER(v53_base_device::tmu_tst1_r) { return m_v53tcu->read(1); } +READ8_MEMBER(v53_base_device::tmu_tst2_r) { return m_v53tcu->read(2); } |