1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-10-05 14:16:33 +00:00

Consume operand_flags into Instruction.hpp.

This commit is contained in:
Thomas Harte
2022-05-03 11:09:57 -04:00
parent c61809f0c4
commit b3cf13775b
9 changed files with 94 additions and 246 deletions

View File

@@ -108,7 +108,7 @@ typename Executor<model, BusHandler>::EffectiveAddress Executor<model, BusHandle
ea.requires_fetch = false;
break;
case AddressingMode::Quick:
ea.value.l = quick(instruction.operation, opcode);
ea.value.l = quick(opcode, instruction.operation);
ea.requires_fetch = false;
break;
case AddressingMode::ImmediateData: