summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Peter Ferrie <peter.ferrie@gmail.com>2022-10-25 15:19:56 -0700
committer Peter Ferrie <peter.ferrie@gmail.com>2022-10-25 15:19:56 -0700
commit95392a16f1dc8363489f05cc1e1de58ee8668de6 (patch)
treedfe214d7e1414f4200043bd0d31f910d8ebe6bee
parent037f6b831a88c061302d07921bc301543ac0d766 (diff)
mtu130.cpp: enable additional reset vector, fixes protection failures [Peter Ferrie]
-rw-r--r--src/mame/misc/mtu130.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mame/misc/mtu130.cpp b/src/mame/misc/mtu130.cpp
index 285e31c696d..6864d7a0eff 100644
--- a/src/mame/misc/mtu130.cpp
+++ b/src/mame/misc/mtu130.cpp
@@ -564,6 +564,7 @@ void mtu130_state::map(address_map &map)
map(0x0be00, 0x0bfff).view(m_io_view); // I/O dynamically overrides part of the main ram
m_io_view[1](0x0be00, 0x0bfff).unmaprw(); // Fully mask out the ram when active
m_io_view[1](0x0bfc3, 0x0bfc3).r(FUNC(mtu130_state::id_r));
+ m_io_view[1](0x0bfc3, 0x0bfc3).w(FUNC(mtu130_state::id_reset_w));
m_io_view[1](0x0bfc5, 0x0bfc5).w(FUNC(mtu130_state::keyboard_col_clear_w));
m_io_view[1](0x0bfc7, 0x0bfc7).w(FUNC(mtu130_state::id_reset_w));
m_io_view[1](0x0bfc8, 0x0bfcb).rw(m_acia, FUNC(mos6551_device::read), FUNC(mos6551_device::write));