summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/acorn/atom
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-03-10 16:39:27 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-03-10 16:39:27 -0400
commit82b8fb912d75f423c639d236a68bd4fccef36747 (patch)
treee15ce91e67863fc416c6c7833e795b04a8d84d08 /src/devices/bus/acorn/atom
parent7f50bbafaa8792beadb2b056deaee317033cbcee (diff)
bus/bbc/fdc, i8271: Simplify read/write handlers (nw)
Diffstat (limited to 'src/devices/bus/acorn/atom')
-rw-r--r--src/devices/bus/acorn/atom/discpack.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/acorn/atom/discpack.cpp b/src/devices/bus/acorn/atom/discpack.cpp
index 63a29d403f1..fd33ec293a6 100644
--- a/src/devices/bus/acorn/atom/discpack.cpp
+++ b/src/devices/bus/acorn/atom/discpack.cpp
@@ -84,7 +84,7 @@ void atom_discpack_device::device_start()
address_space &space = m_bus->memspace();
space.install_device(0x0a00, 0x0a03, *m_fdc, &i8271_device::map);
- space.install_readwrite_handler(0x0a04, 0x0a04, 0, 0x1f8, 0, read8_delegate(FUNC(i8271_device::data_r), m_fdc.target()), write8_delegate(FUNC(i8271_device::data_w), m_fdc.target()));
+ space.install_readwrite_handler(0x0a04, 0x0a04, 0, 0x1f8, 0, read8smo_delegate(FUNC(i8271_device::data_r), m_fdc.target()), write8smo_delegate(FUNC(i8271_device::data_w), m_fdc.target()));
space.install_ram(0x2000, 0x23ff);
space.install_ram(0x2400, 0x27ff);
space.install_ram(0x3c00, 0x3fff);