summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hp_dio/hp98620.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/hp_dio/hp98620.cpp')
-rw-r--r--src/devices/bus/hp_dio/hp98620.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/hp_dio/hp98620.cpp b/src/devices/bus/hp_dio/hp98620.cpp
index fcd0e9d95aa..8988ef56266 100644
--- a/src/devices/bus/hp_dio/hp98620.cpp
+++ b/src/devices/bus/hp_dio/hp98620.cpp
@@ -75,8 +75,8 @@ void dio16_98620_device::device_reset()
if (!m_installed_io)
{
program_space().install_readwrite_handler(0x500000, 0x50020f,
- read16_delegate(FUNC(dio16_98620_device::dma_r), this),
- write16_delegate(FUNC(dio16_98620_device::dma_w), this));
+ read16_delegate(*this, FUNC(dio16_98620_device::dma_r)),
+ write16_delegate(*this, FUNC(dio16_98620_device::dma_w)));
m_installed_io = true;
}
m_control = 0;