mirror of
https://github.com/holub/mame
synced 2025-07-05 18:08:04 +03:00
apple2e: turn off INTCXROM on Control-Reset (GitHub issue #7909) [R. Belmont]
This commit is contained in:
parent
e16d3e98d9
commit
065809bae7
@ -1291,6 +1291,17 @@ TIMER_DEVICE_CALLBACK_MEMBER(apple2e_state::apple2_interrupt)
|
|||||||
if ((m_kbspecial->read() & 0x88) == 0x88)
|
if ((m_kbspecial->read() & 0x88) == 0x88)
|
||||||
{
|
{
|
||||||
m_maincpu->reset();
|
m_maincpu->reset();
|
||||||
|
|
||||||
|
// reset intcxrom to default
|
||||||
|
if (m_isiic)
|
||||||
|
{
|
||||||
|
m_intcxrom = true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
m_intcxrom = false;
|
||||||
|
}
|
||||||
|
update_slotrom_banks();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user