mirror of
https://github.com/TomHarte/CLK.git
synced 2025-03-30 09:30:59 +00:00
DIVS also appears sometimes to differ.
This commit is contained in:
parent
2e1675066d
commit
dd5c903fd6
@ -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++) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user