summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hp_dio/hp98265a.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/hp_dio/hp98265a.cpp')
-rw-r--r--src/devices/bus/hp_dio/hp98265a.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/hp_dio/hp98265a.cpp b/src/devices/bus/hp_dio/hp98265a.cpp
index a2cd9a04e1a..3bfeb992e9c 100644
--- a/src/devices/bus/hp_dio/hp98265a.cpp
+++ b/src/devices/bus/hp_dio/hp98265a.cpp
@@ -164,8 +164,8 @@ void dio16_98265a_device::device_reset()
program_space().install_readwrite_handler(
0x600000 + (code * 0x10000),
0x6007ff + (code * 0x10000),
- read16_delegate(*this, FUNC(dio16_98265a_device::io_r)),
- write16_delegate(*this, FUNC(dio16_98265a_device::io_w)));
+ read16sm_delegate(*this, FUNC(dio16_98265a_device::io_r)),
+ write16sm_delegate(*this, FUNC(dio16_98265a_device::io_w)));
program_space().install_device(0x600020 + (code * 0x10000), 0x60003f + (code * 0x10000), *m_spc, &mb87030_device::map, 0x00ff00ff);
m_installed_io = true;
}
@@ -181,7 +181,7 @@ int dio16_98265a_device::get_int_level()
REG_SW1_INT_LEVEL_MASK;
}
-READ16_MEMBER(dio16_98265a_device::io_r)
+uint16_t dio16_98265a_device::io_r(offs_t offset)
{
uint16_t ret = 0xffff;
@@ -204,7 +204,7 @@ READ16_MEMBER(dio16_98265a_device::io_r)
return ret;
}
-WRITE16_MEMBER(dio16_98265a_device::io_w)
+void dio16_98265a_device::io_w(offs_t offset, uint16_t data)
{
LOG("io_w: offset=%02X, data=%02X\n", offset, data);