diff --git a/InstructionSets/M68k/Decoder.cpp b/InstructionSets/M68k/Decoder.cpp index 704d23bc3..6b17bc21e 100644 --- a/InstructionSets/M68k/Decoder.cpp +++ b/InstructionSets/M68k/Decoder.cpp @@ -1544,10 +1544,9 @@ template Preinstruction Predecoder::decode8(uint16_t instruction) { using Op = Operation; - switch(instruction & 0x1f0) { case 0x100: Decode(Op::SBCD); // 4-171 (p275) - case 0x1f0: DecodeReq(model >= Model::M68020, Op::PACK); // 4-157 (p261) + case 0x140: DecodeReq(model >= Model::M68020, Op::PACK); // 4-157 (p261) default: break; }