summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author cracyc <cracyc@users.noreply.github.com>2017-03-04 09:26:09 -0600
committer cracyc <cracyc@users.noreply.github.com>2017-03-04 09:26:09 -0600
commit573853e3b6851d64a4324ba18e98e7afc58cead6 (patch)
tree9e27d66efd13830d65bdbfb1eacad3b17458d7dd
parentbbcb34f2fbd218381095b4b2dcd3212d18550bdb (diff)
m20: fix kbd tx (nw)
-rw-r--r--src/mame/drivers/m20.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mame/drivers/m20.cpp b/src/mame/drivers/m20.cpp
index 9abf3d68c91..ac0bf307675 100644
--- a/src/mame/drivers/m20.cpp
+++ b/src/mame/drivers/m20.cpp
@@ -759,6 +759,7 @@ void m20_state::machine_reset()
memcpy(RAM, ROM, 8); // we need only the reset vector
m_maincpu->reset(); // reset the CPU to ensure it picks up the new vector
+ m_kbdi8251->write_cts(0);
if(m_apb)
m_apb->m_8086->set_input_line(INPUT_LINE_HALT, ASSERT_LINE);
}