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

Include all bus activity after the split.

This commit is contained in:
Thomas Harte 2022-06-09 11:30:22 -04:00
parent fdcbf617d8
commit ba2803c807

View File

@ -257,7 +257,7 @@ template <typename M68000> struct Tester {
// Use a fixed seed to guarantee continuity across repeated runs.
srand(68000);
for(int c = 0; c < 65536; c++) {
for(int c = 0x4e72; c < 65536; c++) {
printf("%04x\n", c);
// Test only defined opcodes.
@ -326,8 +326,15 @@ template <typename M68000> struct Tester {
++repeatIt;
}
printf("---\n");
printf("o: "); oldIt->print();
printf("n: "); newIt->print();
while(newIt != newTransactions.end()) {
printf("n: "); newIt->print();
++newIt;
}
printf("\n");
while(oldIt != oldTransactions.end()) {
printf("o: "); oldIt->print();
++oldIt;
}
printf("\n");
break;