summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/acorn/atom/econet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/acorn/atom/econet.cpp')
-rw-r--r--src/devices/bus/acorn/atom/econet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/acorn/atom/econet.cpp b/src/devices/bus/acorn/atom/econet.cpp
index f615313bdad..70c92ff3489 100644
--- a/src/devices/bus/acorn/atom/econet.cpp
+++ b/src/devices/bus/acorn/atom/econet.cpp
@@ -64,14 +64,14 @@ void atom_econet_device::device_start()
address_space &space = m_bus->memspace();
space.install_readwrite_handler(0xb400, 0xb403, read8sm_delegate(*m_adlc, FUNC(mc6854_device::read)), write8sm_delegate(*m_adlc, FUNC(mc6854_device::write)));
- space.install_read_handler(0xb404, 0xb404, read8_delegate(*this, FUNC(atom_econet_device::statid_r)));
+ space.install_read_handler(0xb404, 0xb404, read8smo_delegate(*this, FUNC(atom_econet_device::statid_r)));
}
//**************************************************************************
// IMPLEMENTATION
//**************************************************************************
-READ8_MEMBER(atom_econet_device::statid_r)
+uint8_t atom_econet_device::statid_r()
{
return 0xfe;
}