mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +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];
|
||||
|
||||
default:
|
||||
generic_access(space, offset);
|
||||
if (!machine().side_effect_disabled())
|
||||
generic_access(space, offset);
|
||||
break;
|
||||
}
|
||||
return 0xff;
|
||||
|
Loading…
Reference in New Issue
Block a user