summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hp_dio/hp98603b.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/hp_dio/hp98603b.cpp')
-rw-r--r--src/devices/bus/hp_dio/hp98603b.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/devices/bus/hp_dio/hp98603b.cpp b/src/devices/bus/hp_dio/hp98603b.cpp
index 6c8cff6b95a..638f5fba6e7 100644
--- a/src/devices/bus/hp_dio/hp98603b.cpp
+++ b/src/devices/bus/hp_dio/hp98603b.cpp
@@ -61,8 +61,9 @@ void dio16_98603b_device::device_start()
void dio16_98603b_device::device_reset()
{
m_rom = device().machine().root_device().memregion(this->subtag(HP98603B_ROM_REGION).c_str())->base();
- dio().install_memory(0x100000, 0x1fffff, read16_delegate(FUNC(dio16_98603b_device::rom_r), this),
- write16_delegate(FUNC(dio16_98603b_device::rom_w), this));
+ dio().install_memory(0x100000, 0x1fffff,
+ read16_delegate(*this, FUNC(dio16_98603b_device::rom_r)),
+ write16_delegate(*this, FUNC(dio16_98603b_device::rom_w)));
}
READ16_MEMBER(dio16_98603b_device::rom_r)