summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/einstein/pipe/silicon_disc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/einstein/pipe/silicon_disc.cpp')
-rw-r--r--src/devices/bus/einstein/pipe/silicon_disc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/einstein/pipe/silicon_disc.cpp b/src/devices/bus/einstein/pipe/silicon_disc.cpp
index b9017cd6e56..ff4ac92a910 100644
--- a/src/devices/bus/einstein/pipe/silicon_disc.cpp
+++ b/src/devices/bus/einstein/pipe/silicon_disc.cpp
@@ -87,8 +87,8 @@ void einstein_silicon_disc_device::device_reset()
// install i/o ports
io_space().install_device(0xf0, 0xff, *this, &einstein_silicon_disc_device::map);
io_space().install_readwrite_handler(0xfa, 0xfa, 0, 0, 0xff00,
- read8_delegate(FUNC(einstein_silicon_disc_device::ram_r), this),
- write8_delegate(FUNC(einstein_silicon_disc_device::ram_w), this));
+ read8_delegate(*this, FUNC(einstein_silicon_disc_device::ram_r)),
+ write8_delegate(*this, FUNC(einstein_silicon_disc_device::ram_w)));
}