(MESS) mac: fix 0.153 regression that prevented several Macs from booting. [R. Belmont]

This commit is contained in:
R. Belmont 2014-06-19 02:14:11 +00:00
parent fea4ed6ccd
commit c82ae7b117

View File

@ -587,7 +587,7 @@ WRITE8_MEMBER( asc_device::write )
break;
}
if (offset < 0x800)
if (offset >= 0x800 && offset < 0x1000)
{
m_regs[offset-0x800] = data;
}