diff --git a/OSBindings/Mac/Clock SignalTests/68000OldVsNew.mm b/OSBindings/Mac/Clock SignalTests/68000OldVsNew.mm index 370f9d70b..d1a35816b 100644 --- a/OSBindings/Mac/Clock SignalTests/68000OldVsNew.mm +++ b/OSBindings/Mac/Clock SignalTests/68000OldVsNew.mm @@ -262,7 +262,7 @@ template struct Tester { // Use a fixed seed to guarantee continuity across repeated runs. srand(68000); - std::set test_set;/* = { + std::set test_set = { InstructionSet::M68k::Operation::ABCD, InstructionSet::M68k::Operation::SBCD, InstructionSet::M68k::Operation::MOVEb, @@ -273,10 +273,11 @@ template struct Tester { InstructionSet::M68k::Operation::MOVEtoCCR, InstructionSet::M68k::Operation::JSR, InstructionSet::M68k::Operation::DIVU, + InstructionSet::M68k::Operation::DIVS, InstructionSet::M68k::Operation::RTE, InstructionSet::M68k::Operation::RTR, InstructionSet::M68k::Operation::TAS, - };*/ + }; std::set failing_operations; for(int c = 0; c < 65536; c++) {