From 93fe3459fdf3ea2ce6e5b2dee0618860f7077b40 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 19 Apr 2022 08:37:35 -0400 Subject: [PATCH] The quick value won't always fit in reg; turf the problem elsewhere. --- InstructionSets/68k/Instruction.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InstructionSets/68k/Instruction.hpp b/InstructionSets/68k/Instruction.hpp index 022007631..4193ea9d5 100644 --- a/InstructionSets/68k/Instruction.hpp +++ b/InstructionSets/68k/Instruction.hpp @@ -203,7 +203,7 @@ enum class AddressingMode: uint8_t { /// # ImmediateData = 0b01'100, - /// .q; value is provided as the corresponding 'reg'. + /// .q; value is embedded in the opcode. Quick = 0b11'110, };