einstein: Disable rom switching side effects (nw)

This commit is contained in:
Nigel Barnes 2019-11-06 13:21:29 +00:00
parent a58ffe8bf8
commit b4455b8923

View File

@ -418,9 +418,12 @@ WRITE8_MEMBER(einstein_state::evdpint_msk_w)
***************************************************************************/
READ8_MEMBER( einstein_state::rom_r )
{
if (!machine().side_effects_disabled())
{
m_rom_enabled ^= 1;
m_bank1->set_entry(m_rom_enabled);
}
return 0xff;
}