Run both cpu types in cpu benchmark

This commit is contained in:
edmccard 2012-04-24 16:21:32 -04:00
parent 9f8f73f530
commit 6ac568742e
1 changed files with 7 additions and 4 deletions

View File

@ -57,9 +57,12 @@ if (isCpu!T)
void main()
{
// auto milliExpected = (61886766.0 / 1020484.0) * 1000;
auto milliExpected = (64508206.0 / 1020484.0) * 1000;
auto r = benchmark!(
auto nmosExpected = (61886766.0 / 1020484.0) * 1000;
auto cmosExpected = (64508206.0 / 1020484.0) * 1000;
auto r1 = benchmark!(
run_benchmark!(CPU!("6502", BreakRunner, BreakRunner)))(1);
writeln("NMOS: ", nmosExpected / r1[0].to!("msecs", int));
auto r2 = benchmark!(
run_benchmark!(CPU!("65C02", BreakRunner, BreakRunner)))(1);
writeln(milliExpected / r[0].to!("msecs", int));
writeln("CMOS: ", cmosExpected / r2[0].to!("msecs", int));
}