mirror of
https://github.com/holub/mame
synced 2025-10-08 09:30:17 +03:00
Merge pull request #3407 from shattered/_e3e67e8
i8214: check pending interrupts when ETLG and INTE lines change (nw)
This commit is contained in:
commit
ae11b915f8
@ -204,6 +204,8 @@ WRITE_LINE_MEMBER( i8214_device::etlg_w )
|
|||||||
LOG("I8214 ETLG: %u\n", state);
|
LOG("I8214 ETLG: %u\n", state);
|
||||||
|
|
||||||
m_etlg = state;
|
m_etlg = state;
|
||||||
|
|
||||||
|
check_interrupt();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -216,4 +218,6 @@ WRITE_LINE_MEMBER( i8214_device::inte_w )
|
|||||||
LOG("I8214 INTE: %u\n", state);
|
LOG("I8214 INTE: %u\n", state);
|
||||||
|
|
||||||
m_inte = state;
|
m_inte = state;
|
||||||
|
|
||||||
|
check_interrupt();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user