diff options
-rw-r--r-- | src/devices/machine/i8214.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
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(); } |