From 360ff18720764c9c2e4653806c6e778acf4638ea Mon Sep 17 00:00:00 2001 From: Sergey Svishchev Date: Tue, 27 Mar 2018 03:28:29 +0300 Subject: i8214: check pending interrupts when ETLG and INTE lines change (nw) --- src/devices/machine/i8214.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/devices/machine/i8214.cpp b/src/devices/machine/i8214.cpp index c82488fc81c..f496c758453 100644 --- a/src/devices/machine/i8214.cpp +++ b/src/devices/machine/i8214.cpp @@ -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(); } -- cgit v1.2.3