mirror of
https://github.com/edmccard/twoapple-reboot.git
synced 2025-01-02 23:30:42 +00:00
uncommented certain tests
This commit is contained in:
parent
fa60e14739
commit
8a3292e33d
@ -766,19 +766,19 @@ unittest
|
||||
for (int op = 0x00; op < 0x100; op++)
|
||||
test_opcode_timing!T4(cast(ubyte)op);
|
||||
|
||||
alias CPU!("65C02", false, true) T1;
|
||||
alias CPU!("65C02", false, true) T5;
|
||||
for (int op = 0x00; op < 0x100; op++)
|
||||
test_opcode_timing!T1(cast(ubyte)op);
|
||||
test_opcode_timing!T5(cast(ubyte)op);
|
||||
|
||||
alias CPU!("65C02", true, true) T2;
|
||||
alias CPU!("65C02", true, true) T6;
|
||||
for (int op = 0x00; op < 0x100; op++)
|
||||
test_opcode_timing!T2(cast(ubyte)op);
|
||||
test_opcode_timing!T6(cast(ubyte)op);
|
||||
|
||||
alias CPU!("6502", false, true) T3;
|
||||
alias CPU!("6502", false, true) T7;
|
||||
for (int op = 0x00; op < 0x100; op++)
|
||||
test_opcode_timing!T3(cast(ubyte)op);
|
||||
test_opcode_timing!T7(cast(ubyte)op);
|
||||
|
||||
alias CPU!("6502", true, true) T4;
|
||||
alias CPU!("6502", true, true) T8;
|
||||
for (int op = 0x00; op < 0x100; op++)
|
||||
test_opcode_timing!T4(cast(ubyte)op);
|
||||
test_opcode_timing!T8(cast(ubyte)op);
|
||||
}
|
||||
|
@ -231,7 +231,6 @@ unittest
|
||||
writeln("Testing decimal mode, CMOS(Strict.no, Cumulative.no)");
|
||||
testDecimalMode!(CPU!("65C02", false, false))();
|
||||
|
||||
/+
|
||||
writeln("Testing decimal mode, NMOS(Strict.no, Cumulative.yes)");
|
||||
testDecimalMode!(CPU!("6502", false, true))();
|
||||
writeln("Testing decimal mode, CMOS(Strict.no, Cumulative.yes)");
|
||||
@ -246,5 +245,4 @@ unittest
|
||||
testDecimalMode!(CPU!("6502", true, true))();
|
||||
writeln("Testing decimal mode, CMOS(Strict.yes, Cumulative.yes)");
|
||||
testDecimalMode!(CPU!("65C02", true, true))();
|
||||
+/
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user