1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

DIVS also appears sometimes to differ.

This commit is contained in:
Thomas Harte 2022-06-09 20:19:39 -04:00
parent 2e1675066d
commit dd5c903fd6

View File

@ -262,7 +262,7 @@ template <typename M68000> struct Tester {
// Use a fixed seed to guarantee continuity across repeated runs.
srand(68000);
std::set<InstructionSet::M68k::Operation> test_set;/* = {
std::set<InstructionSet::M68k::Operation> test_set = {
InstructionSet::M68k::Operation::ABCD,
InstructionSet::M68k::Operation::SBCD,
InstructionSet::M68k::Operation::MOVEb,
@ -273,10 +273,11 @@ template <typename M68000> 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<InstructionSet::M68k::Operation> failing_operations;
for(int c = 0; c < 65536; c++) {