mirror of
https://github.com/holub/mame
synced 2025-06-07 13:23:50 +03:00
(MESS) mac: fix 0.153 regression that prevented several Macs from booting. [R. Belmont]
This commit is contained in:
parent
fea4ed6ccd
commit
c82ae7b117
@ -587,7 +587,7 @@ WRITE8_MEMBER( asc_device::write )
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (offset < 0x800)
|
if (offset >= 0x800 && offset < 0x1000)
|
||||||
{
|
{
|
||||||
m_regs[offset-0x800] = data;
|
m_regs[offset-0x800] = data;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user