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 f617d0266ae..f8a0737e456 100644
--- a/src/devices/bus/acorn/system/econet.cpp
+++ b/src/devices/bus/acorn/system/econet.cpp
@@ -71,14 +71,14 @@ void acorn_econet_device::device_reset()
address_space &space = m_bus->memspace();
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)));
+ space.install_read_handler(0x1944, 0x1944, read8smo_delegate(*this, FUNC(acorn_econet_device::statid_r)));
}
//**************************************************************************
// IMPLEMENTATION
//**************************************************************************
-READ8_MEMBER(acorn_econet_device::statid_r)
+uint8_t acorn_econet_device::statid_r()
{
return 0xfe;
}