From a4dc7acbd1a76bd36a4ad5e6d3491ae73773e09b Mon Sep 17 00:00:00 2001 From: fulivi Date: Tue, 28 Apr 2020 13:17:21 +0200 Subject: [PATCH] tms9914: simplify handling of CIDS state (nw) --- src/devices/machine/tms9914.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/machine/tms9914.cpp b/src/devices/machine/tms9914.cpp index fc6c7dbe9d5..b18824ab292 100644 --- a/src/devices/machine/tms9914.cpp +++ b/src/devices/machine/tms9914.cpp @@ -1005,8 +1005,8 @@ void tms9914_device::update_fsm() } else { switch (m_c_state) { case FSM_C_CIDS: - // sic | rqc -> CADS - if (!controller_reset() && m_sic && m_c_state == FSM_C_CIDS) { + // See also sic & rqc aux commands + if (m_sic) { m_c_state = FSM_C_CADS; } break;