From dd5c903fd69b8794c72b9f596ae69044ef7d8a39 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 9 Jun 2022 20:19:39 -0400 Subject: [PATCH] DIVS also appears sometimes to differ. --- OSBindings/Mac/Clock SignalTests/68000OldVsNew.mm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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++) {