diff options
| author | 2020-04-28 08:35:35 -0400 | |
|---|---|---|
| committer | 2020-04-28 08:35:35 -0400 | |
| commit | f9faa6db7e3ced9fdbe06c331f952beed12deb4a (patch) | |
| tree | fe11d8f88cb64583376c477dcc3e50686cb9f5d3 | |
| parent | 5d34b10ee1ad3592cf7844356102a3060678c333 (diff) | |
| parent | a4dc7acbd1a76bd36a4ad5e6d3491ae73773e09b (diff) | |
Merge pull request #6605 from fulivi/tms9914_dev3
tms9914: simplify handling of CIDS state
| -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; |
