mirror of
https://github.com/holub/mame
synced 2025-10-06 17:08:28 +03:00
tms9927: Disable side effects for reads (nw)
This commit is contained in:
parent
b6450aa0ae
commit
d1938f3d39
@ -279,7 +279,8 @@ READ8_MEMBER( tms9927_device::read )
|
|||||||
return m_reg[offset - 0x08 + 7];
|
return m_reg[offset - 0x08 + 7];
|
||||||
|
|
||||||
default:
|
default:
|
||||||
generic_access(space, offset);
|
if (!machine().side_effect_disabled())
|
||||||
|
generic_access(space, offset);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return 0xff;
|
return 0xff;
|
||||||
|
Loading…
Reference in New Issue
Block a user