summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/acorn/system/econet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/acorn/system/econet.cpp')
-rw-r--r--src/devices/bus/acorn/system/econet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/acorn/system/econet.cpp b/src/devices/bus/acorn/system/econet.cpp
index 261fb4261a1..f617d0266ae 100644
--- a/src/devices/bus/acorn/system/econet.cpp
+++ b/src/devices/bus/acorn/system/econet.cpp
@@ -70,8 +70,8 @@ void acorn_econet_device::device_reset()
{
address_space &space = m_bus->memspace();
- space.install_readwrite_handler(0x1940, 0x1943, read8sm_delegate(FUNC(mc6854_device::read), m_adlc.target()), write8sm_delegate(FUNC(mc6854_device::write), m_adlc.target()));
- space.install_read_handler(0x1944, 0x1944, read8_delegate(FUNC(acorn_econet_device::statid_r), this));
+ space.install_readwrite_handler(0x1940, 0x1943, read8sm_delegate(*m_adlc, FUNC(mc6854_device::read)), write8sm_delegate(*m_adlc, FUNC(mc6854_device::write)));
+ space.install_read_handler(0x1944, 0x1944, read8_delegate(*this, FUNC(acorn_econet_device::statid_r)));
}
//**************************************************************************