1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-04-16 16:38:41 +00:00

Fix effect on flags of DD- and FD-page SCF and CCF.

This commit is contained in:
Thomas Harte 2022-09-20 14:43:21 -04:00
parent e84c6a4e60
commit 42aae39f35

View File

@ -871,6 +871,9 @@ template < class T,
case MicroOp::SetInstructionPage:
current_instruction_page_ = (InstructionPage *)operation->source;
scheduled_program_counter_ = current_instruction_page_->fetch_decode_execute_data;
// Undo spurious history update.
flag_adjustment_history_ >>= 1;
break;
case MicroOp::CalculateIndexAddress: