summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hp_dio/hp98644.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/hp_dio/hp98644.cpp')
-rw-r--r--src/devices/bus/hp_dio/hp98644.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/hp_dio/hp98644.cpp b/src/devices/bus/hp_dio/hp98644.cpp
index d3c347b6d31..8545220b074 100644
--- a/src/devices/bus/hp_dio/hp98644.cpp
+++ b/src/devices/bus/hp_dio/hp98644.cpp
@@ -161,8 +161,8 @@ void dio16_98644_device::device_reset()
dio().install_memory(
0x600000 + (code * 0x10000),
0x6007ff + (code * 0x10000),
- read16_delegate(FUNC(dio16_98644_device::io_r), this),
- write16_delegate(FUNC(dio16_98644_device::io_w), this));
+ read16_delegate(*this, FUNC(dio16_98644_device::io_r)),
+ write16_delegate(*this, FUNC(dio16_98644_device::io_w)));
m_installed_io = true;
}
}