apple2e: turn off INTCXROM on Control-Reset (GitHub issue #7909) [R. Belmont]

This commit is contained in:
arbee 2021-03-31 21:07:12 -04:00
parent e16d3e98d9
commit 065809bae7

View File

@ -1291,6 +1291,17 @@ TIMER_DEVICE_CALLBACK_MEMBER(apple2e_state::apple2_interrupt)
if ((m_kbspecial->read() & 0x88) == 0x88)
{
m_maincpu->reset();
// reset intcxrom to default
if (m_isiic)
{
m_intcxrom = true;
}
else
{
m_intcxrom = false;
}
update_slotrom_banks();
}
}
}