1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-03 11:30:02 +00:00

SWAP should clear overflow and carry.

This commit is contained in:
Thomas Harte 2019-04-24 13:19:56 -04:00
parent 0bb6b498ce
commit e214584c76

View File

@ -892,6 +892,7 @@ template <class T, bool dtack_is_implicit, bool signal_will_perform> void Proces
zero_result_ = active_program_->destination->full;
negative_flag_ = temporary & 0x8000;
overflow_flag_ = carry_flag_ = 0;
} break;
/*