mirror of
https://github.com/holub/mame
synced 2025-07-05 01:48:29 +03:00
einstein: Disable rom switching side effects (nw)
This commit is contained in:
parent
a58ffe8bf8
commit
b4455b8923
@ -419,8 +419,11 @@ WRITE8_MEMBER(einstein_state::evdpint_msk_w)
|
|||||||
|
|
||||||
READ8_MEMBER( einstein_state::rom_r )
|
READ8_MEMBER( einstein_state::rom_r )
|
||||||
{
|
{
|
||||||
m_rom_enabled ^= 1;
|
if (!machine().side_effects_disabled())
|
||||||
m_bank1->set_entry(m_rom_enabled);
|
{
|
||||||
|
m_rom_enabled ^= 1;
|
||||||
|
m_bank1->set_entry(m_rom_enabled);
|
||||||
|
}
|
||||||
|
|
||||||
return 0xff;
|
return 0xff;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user