summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/acorn/atom/sid.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-02-19 07:05:57 -0500
committer AJR <ajrhacker@users.noreply.github.com>2019-02-19 07:06:31 -0500
commitb909c6e1a3ab844f2fb51f97e58f589dadf01643 (patch)
treeb268d713218235611ae1aca0e0dd2ee1aa8ca58c /src/devices/bus/acorn/atom/sid.cpp
parent75805ea2f09cf5aa4e0572a94da8599b62c3045a (diff)
mos6566, mos6581, bus/plus4: Eliminate address_space argument from handlers (nw)
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 950f4de2c58..8b5cd738cfe 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, read8_delegate(FUNC(mos6581_device::read), m_sid.target()), write8_delegate(FUNC(mos6581_device::write), m_sid.target()));
+ space.install_readwrite_handler(0xbdc0, 0xbddf, read8sm_delegate(FUNC(mos6581_device::read), m_sid.target()), write8sm_delegate(FUNC(mos6581_device::write), m_sid.target()));
}