Merge pull request #3407 from shattered/_e3e67e8

i8214: check pending interrupts when ETLG and INTE lines change (nw)
This commit is contained in:
ajrhacker 2018-03-28 16:05:32 -04:00 committed by GitHub
commit ae11b915f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -204,6 +204,8 @@ WRITE_LINE_MEMBER( i8214_device::etlg_w )
LOG("I8214 ETLG: %u\n", state);
m_etlg = state;
check_interrupt();
}
@ -216,4 +218,6 @@ WRITE_LINE_MEMBER( i8214_device::inte_w )
LOG("I8214 INTE: %u\n", state);
m_inte = state;
check_interrupt();
}