summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/emu/machine/mc146818.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/machine/mc146818.c b/src/emu/machine/mc146818.c
index 626abfabb21..a09ac1a1e87 100644
--- a/src/emu/machine/mc146818.c
+++ b/src/emu/machine/mc146818.c
@@ -73,6 +73,8 @@ void mc146818_device::device_reset()
{
m_data[REG_B] &= ~(REG_B_UIE | REG_B_AIE | REG_B_PIE | REG_B_SQWE);
m_data[REG_C] = 0;
+
+ update_irq();
}
//-------------------------------------------------