1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-02-16 18:30:32 +00:00

Fix segue into second operand.

This commit is contained in:
Thomas Harte 2022-05-19 19:38:42 -04:00
parent efe5a5ac26
commit 1ee9c585ca

@ -521,11 +521,11 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
case Mode::AddressRegisterDirect:
case Mode::DataRegisterDirect:
operand_[next_operand_] = registers_[instruction_.lreg(next_operand_)];
MoveToNextOperand(FetchOperand_bw);
MoveToNextOperand(FetchOperand_l);
case Mode::Quick:
operand_[next_operand_].l = InstructionSet::M68k::quick(opcode_, instruction_.operation);
MoveToNextOperand(FetchOperand_bw);
MoveToNextOperand(FetchOperand_l);
case Mode::AddressRegisterIndirect:
MoveToState(FetchAddressRegisterIndirect_l);