From 7fe0d530c145d1179d43527d9da3f4c0877908b7 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 18 Apr 2022 08:05:33 -0400 Subject: [PATCH] Add a decoder for TRAP. --- InstructionSets/68k/Decoder.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/InstructionSets/68k/Decoder.cpp b/InstructionSets/68k/Decoder.cpp index 210d00309..969d0f6d7 100644 --- a/InstructionSets/68k/Decoder.cpp +++ b/InstructionSets/68k/Decoder.cpp @@ -352,6 +352,15 @@ template Preinstruction Predecoder::decode(ui // TODO: more validation on the above. + // + // MARK: TRAP + // + // No further operands decoded, but note that one is somewhere in the opcode. + // + case OpT(Operation::TRAP): + return Preinstruction(operation, + AddressingMode::Quick, 0); + // // MARK: Impossible error case. //