1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-29 16:55:59 +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. // Use a fixed seed to guarantee continuity across repeated runs.
srand(68000); srand(68000);
for(int c = 0; c < 65536; c++) { for(int c = 0x4e72; c < 65536; c++) {
printf("%04x\n", c); printf("%04x\n", c);
// Test only defined opcodes. // Test only defined opcodes.
@ -326,8 +326,15 @@ template <typename M68000> struct Tester {
++repeatIt; ++repeatIt;
} }
printf("---\n"); printf("---\n");
printf("o: "); oldIt->print(); while(newIt != newTransactions.end()) {
printf("n: "); newIt->print(); printf("n: "); newIt->print();
++newIt;
}
printf("\n");
while(oldIt != oldTransactions.end()) {
printf("o: "); oldIt->print();
++oldIt;
}
printf("\n"); printf("\n");
break; break;