We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2ad753 commit aed250aCopy full SHA for aed250a
benchmark/bench1.cpp
@@ -61,10 +61,10 @@ int main(int argc, char** argv) {
61
62
constexpr uint64_t tbr_freq = 16705000;
63
64
- ppc_cpu_init(grackle_obj, PPC_VER::MPC750, tbr_freq);
+ ppc_cpu_init(grackle_obj, PPC_VER::MPC750, false, tbr_freq);
65
66
/* load executable code into RAM at address 0 */
67
- for (i = 0; i < sizeof(cs_code); i++) {
+ for (i = 0; i < sizeof(cs_code) / sizeof(cs_code[0]); i++) {
68
mmu_write_vmem<uint32_t>(i*4, cs_code[i]);
69
}
70
0 commit comments