From 99f4cd867dc180b83f871fa5f86930c5cb39990a Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 19 Apr 2022 08:42:17 -0400 Subject: [PATCH] Decode the two EXTs. --- InstructionSets/68k/Decoder.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/InstructionSets/68k/Decoder.cpp b/InstructionSets/68k/Decoder.cpp index 28735d6d2..2d8680fb4 100644 --- a/InstructionSets/68k/Decoder.cpp +++ b/InstructionSets/68k/Decoder.cpp @@ -372,11 +372,12 @@ template Preinstruction Predecoder::decode(ui AddressingMode::ImmediateData, 0); // - // MARK: SWAP + // MARK: SWAP, EXTbtow, EXTwtol // // b0–b2: a data register. // case OpT(Operation::SWAP): + case OpT(Operation::EXTbtow): case OpT(Operation::EXTwtol): return Preinstruction(operation, AddressingMode::DataRegisterDirect, ea_register);