diff options
author | 2020-04-28 13:17:21 +0200 | |
---|---|---|
committer | 2020-04-28 13:17:21 +0200 | |
commit | a4dc7acbd1a76bd36a4ad5e6d3491ae73773e09b (patch) | |
tree | 28740ffd3b4a20ada5dad791176d057b0fca09de | |
parent | b25fdfbe46e406837183cbf22e65404e8b162bc8 (diff) |
tms9914: simplify handling of CIDS state (nw)
-rw-r--r-- | src/devices/machine/tms9914.cpp | 4 |
1 files 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; |