Merge pull request #981 from shattered/_c58c4ac

t11: fix MARK insn (not supported by actual T11)
This commit is contained in:
R. Belmont 2016-06-21 15:19:30 -04:00 committed by GitHub
commit 9085f5f8a0

View File

@ -290,7 +290,7 @@ void t11_device::mark(UINT16 op)
{
m_icount -= 36;
SP = SP + 2 * (op & 0x3f);
SP = PC + 2 * (op & 0x3f);
PC = REGW(5);
REGW(5) = POP();
}