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.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/hp_dio/hp98265a.cpp b/src/devices/bus/hp_dio/hp98265a.cpp
index 623f2d00be1..436fbc1c910 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(FUNC(dio16_98265a_device::io_r), this),
- write16_delegate(FUNC(dio16_98265a_device::io_w), this));
+ read16_delegate(*this, FUNC(dio16_98265a_device::io_r)),
+ write16_delegate(*this, FUNC(dio16_98265a_device::io_w)));
program_space().install_device(0x6e0020, 0x6e003f, *m_spc, &mb87030_device::map, 0x00ff00ff);
m_installed_io = true;
}