mirror of
https://github.com/holub/mame
synced 2025-06-28 15:14:21 +03:00
Merge pull request #981 from shattered/_c58c4ac
t11: fix MARK insn (not supported by actual T11)
This commit is contained in:
commit
9085f5f8a0
@ -290,7 +290,7 @@ void t11_device::mark(UINT16 op)
|
|||||||
{
|
{
|
||||||
m_icount -= 36;
|
m_icount -= 36;
|
||||||
|
|
||||||
SP = SP + 2 * (op & 0x3f);
|
SP = PC + 2 * (op & 0x3f);
|
||||||
PC = REGW(5);
|
PC = REGW(5);
|
||||||
REGW(5) = POP();
|
REGW(5) = POP();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user