summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/acorn/atom/sid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/acorn/atom/sid.cpp')
-rw-r--r--src/devices/bus/acorn/atom/sid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/acorn/atom/sid.cpp b/src/devices/bus/acorn/atom/sid.cpp
index 8b5cd738cfe..4b0e1f7ff4d 100644
--- a/src/devices/bus/acorn/atom/sid.cpp
+++ b/src/devices/bus/acorn/atom/sid.cpp
@@ -55,5 +55,5 @@ void atom_sid_device::device_start()
{
address_space &space = m_bus->memspace();
- space.install_readwrite_handler(0xbdc0, 0xbddf, read8sm_delegate(FUNC(mos6581_device::read), m_sid.target()), write8sm_delegate(FUNC(mos6581_device::write), m_sid.target()));
+ space.install_readwrite_handler(0xbdc0, 0xbddf, read8sm_delegate(*m_sid, FUNC(mos6581_device::read)), write8sm_delegate(*m_sid, FUNC(mos6581_device::write)));
}