diff options
author | 2019-02-18 23:07:45 -0500 | |
---|---|---|
committer | 2019-02-18 23:07:45 -0500 | |
commit | 42f54961d8552fed54bd53e63b0e14bcd0c9a71e (patch) | |
tree | 0186dc40017cdc4b12f441ecfa2509f206f84c36 /src/devices/bus/acorn/atom | |
parent | 58e6b1acb251c96c3e0d96242209ee5759ec5da4 (diff) |
mc6852, mc6854, mos6551: Simplify read/write handlers (nw)
Diffstat (limited to 'src/devices/bus/acorn/atom')
-rw-r--r-- | src/devices/bus/acorn/atom/econet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/acorn/atom/econet.cpp b/src/devices/bus/acorn/atom/econet.cpp index 210ca895445..5051fd0e8e7 100644 --- a/src/devices/bus/acorn/atom/econet.cpp +++ b/src/devices/bus/acorn/atom/econet.cpp @@ -63,7 +63,7 @@ void atom_econet_device::device_start() { address_space &space = m_bus->memspace(); - space.install_readwrite_handler(0xb400, 0xb403, read8_delegate(FUNC(mc6854_device::read), m_adlc.target()), write8_delegate(FUNC(mc6854_device::write), m_adlc.target())); + space.install_readwrite_handler(0xb400, 0xb403, read8sm_delegate(FUNC(mc6854_device::read), m_adlc.target()), write8sm_delegate(FUNC(mc6854_device::write), m_adlc.target())); space.install_read_handler(0xb404, 0xb404, read8_delegate(FUNC(atom_econet_device::statid_r), this)); } |