nec/pc9801_kbd.cpp: clear irq line in device_reset

* fix pc9801vm non-working keyboard on soft resets
This commit is contained in:
angelosa 2024-10-24 22:51:46 +02:00
parent 324cdb96e0
commit 139af95212

View file

@ -261,6 +261,7 @@ void pc9801_kbd_device::device_reset()
m_keyb_tx = 0xff;
m_keyb_rx = 0;
m_key_avail = false;
m_write_irq(CLEAR_LINE);
}
//-------------------------------------------------