diff options
author | 2018-08-02 16:30:18 +0200 | |
---|---|---|
committer | 2018-08-02 21:08:47 +0200 | |
commit | 09466d3382eb1bdd9dedb3ce3793e1c440527615 (patch) | |
tree | 7ac2d7d99cb5d6ea1168772192a6ffd01c1cb71a /src/devices/bus/acorn/system | |
parent | 639c9b85fc21ab10dc98d73fafd49376041cf71c (diff) |
Previous commit examples of use (nw)
Diffstat (limited to 'src/devices/bus/acorn/system')
-rw-r--r-- | src/devices/bus/acorn/system/vib.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/acorn/system/vib.cpp b/src/devices/bus/acorn/system/vib.cpp index 89d48b6fedb..f65cad7bb9b 100644 --- a/src/devices/bus/acorn/system/vib.cpp +++ b/src/devices/bus/acorn/system/vib.cpp @@ -93,7 +93,7 @@ void acorn_vib_device::device_reset() { address_space &space = m_bus->memspace(); - space.install_readwrite_handler(0x0c00, 0x0c0f, 0, 0x10, 0, read8_delegate(FUNC(via6522_device::read), m_via6522.target()), write8_delegate(FUNC(via6522_device::write), m_via6522.target())); + space.install_readwrite_handler(0x0c00, 0x0c0f, 0, 0x10, 0, read8sm_delegate(FUNC(via6522_device::read), m_via6522.target()), write8sm_delegate(FUNC(via6522_device::write), m_via6522.target())); space.install_readwrite_handler(0x0c20, 0x0c21, 0, 0x1e, 0, read8_delegate(FUNC(acia6850_device::read), m_acia.target()), write8_delegate(FUNC(acia6850_device::write), m_acia.target())); space.install_readwrite_handler(0x0c40, 0x0c43, 0, 0x1c, 0, read8_delegate(FUNC(i8255_device::read), m_ppi8255.target()), write8_delegate(FUNC(i8255_device::write), m_ppi8255.target())); } |