call update_irq() after updating B & C register in device_reset (nw)

This commit is contained in:
smf- 2013-11-03 11:51:29 +00:00
parent 98d013264f
commit 77fe42edeb

View File

@ -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();
}
//-------------------------------------------------