summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hp_dio/hp98603a.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/hp_dio/hp98603a.cpp')
-rw-r--r--src/devices/bus/hp_dio/hp98603a.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/hp_dio/hp98603a.cpp b/src/devices/bus/hp_dio/hp98603a.cpp
index ac04f7479bd..9295fc1606d 100644
--- a/src/devices/bus/hp_dio/hp98603a.cpp
+++ b/src/devices/bus/hp_dio/hp98603a.cpp
@@ -67,8 +67,8 @@ void dio16_98603a_device::device_reset()
{
m_rom = device().machine().root_device().memregion(this->subtag(HP98603A_ROM_REGION).c_str())->base();
dio().install_memory(0x80000, 0xfffff,
- read16_delegate(FUNC(dio16_98603a_device::rom_r), this),
- write16_delegate(FUNC(dio16_98603a_device::rom_w), this));
+ read16_delegate(*this, FUNC(dio16_98603a_device::rom_r)),
+ write16_delegate(*this, FUNC(dio16_98603a_device::rom_w)));
}
READ16_MEMBER(dio16_98603a_device::rom_r)