diff options
author | 2015-08-26 08:10:34 +0200 | |
---|---|---|
committer | 2015-08-26 08:10:34 +0200 | |
commit | efa3a679a331ea91002a0bc72e49a230ff2a2f67 (patch) | |
tree | 9de472bbb6862733d1982607326783d65be9c414 /src/emu/machine/tms6100.c | |
parent | bc5ffe493777e55f081d3ba29b8b298da90ae776 (diff) |
Cleanups and version bumpmame0165
Diffstat (limited to 'src/emu/machine/tms6100.c')
-rw-r--r-- | src/emu/machine/tms6100.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/tms6100.c b/src/emu/machine/tms6100.c index 6c5a58673dd..7d0f3226ca5 100644 --- a/src/emu/machine/tms6100.c +++ b/src/emu/machine/tms6100.c @@ -211,7 +211,7 @@ WRITE_LINE_MEMBER(tms6100_device::tms6100_romclock_w) /* read bit at address */ if (m_variant == TMS6110_IS_M58819) { - m_data = (m_rom[m_address >> 3] >> (7-(m_address & 0x07))) & 1; + m_data = (m_rom[m_address >> 3] >> (7-(m_address & 0x07))) & 1; } else // m_variant == (TMS6110_IS_TMS6100 || TMS6110_IS_TMS6125) { |