according to FKTCA0.BIC, MTPI should not set c and set v to 0

This commit is contained in:
folkert van heusden 2023-03-17 21:50:04 +01:00
parent 0dda33c754
commit 2c98fa23f5
Signed by untrusted user who does not match committer: folkert
GPG key ID: 6B6455EDFEED3BD1

View file

@ -1377,10 +1377,9 @@ bool cpu::single_operand_instructions(const uint16_t instr)
} }
if (set_flags) { if (set_flags) {
setPSW_c(true);
setPSW_z(v == 0); setPSW_z(v == 0);
setPSW_n(SIGN(v, false)); setPSW_n(SIGN(v, false));
// deze niet? setPSW_v(false); setPSW_v(false);
} }
break; break;