From 573853e3b6851d64a4324ba18e98e7afc58cead6 Mon Sep 17 00:00:00 2001 From: cracyc Date: Sat, 4 Mar 2017 09:26:09 -0600 Subject: [PATCH] m20: fix kbd tx (nw) --- src/mame/drivers/m20.cpp | 1 + 1 file changed, 1 insertion(+) 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); }