Merge pull request #6605 from fulivi/tms9914_dev3

tms9914: simplify handling of CIDS state
This commit is contained in:
ajrhacker 2020-04-28 08:35:35 -04:00 committed by GitHub
commit f9faa6db7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;