no SP update in MMR1 for M.P.?

This commit is contained in:
folkert van heusden 2024-04-12 21:06:23 +02:00
parent bdfc8a53db
commit 74f3a4d949
Signed by untrusted user who does not match committer: folkert
GPG key ID: 6B6455EDFEED3BD1

View file

@ -1311,9 +1311,6 @@ bool cpu::single_operand_instructions(const uint16_t instr)
// put on current stack // put on current stack
pushStack(v); pushStack(v);
b->addToMMR1(-2, 6);
break; break;
} }
@ -1322,7 +1319,6 @@ bool cpu::single_operand_instructions(const uint16_t instr)
// retrieve word from '15/14'-stack // retrieve word from '15/14'-stack
uint16_t v = popStack(); uint16_t v = popStack();
b->addToMMR1(2, 6);
bool set_flags = true; bool set_flags = true;