diff --git a/InstructionSets/M68k/Instruction.hpp b/InstructionSets/M68k/Instruction.hpp index bc2b0ccfb..77fb18278 100644 --- a/InstructionSets/M68k/Instruction.hpp +++ b/InstructionSets/M68k/Instruction.hpp @@ -317,6 +317,7 @@ template uint8_t ope case Operation::CMPb: case Operation::CMPw: case Operation::CMPl: case Operation::CMPAw: case Operation::CMPAl: case Operation::CHK: + case Operation::BTST: return FetchOp1 | FetchOp2; // @@ -349,7 +350,7 @@ template uint8_t ope case Operation::RORb: case Operation::RORw: case Operation::RORl: case Operation::ROXLb: case Operation::ROXLw: case Operation::ROXLl: case Operation::ROXRb: case Operation::ROXRw: case Operation::ROXRl: - case Operation::BTST: case Operation::BCHG: + case Operation::BCHG: case Operation::BCLR: case Operation::BSET: return FetchOp1 | FetchOp2 | StoreOp2; diff --git a/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm b/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm index e430fbb4c..79856ae82 100644 --- a/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm +++ b/OSBindings/Mac/Clock SignalTests/68000ComparativeTests.mm @@ -71,7 +71,7 @@ - (void)setUp { // To limit tests run to a subset of files and/or of tests, uncomment and fill in below. _fileSet = [NSSet setWithArray:@[@"move.json"]]; -// _testSet = [NSSet setWithArray:@[@"LINK.w 0007"]]; +// _testSet = [NSSet setWithArray:@[@"MOVE[A] 033c"]]; // _fileSet = [NSSet setWithArray:@[@"jmp_jsr.json"]]; // _testSet = [NSSet setWithArray:@[@"CHK 41a8"]]; }