Correct README (jit to cpu)

This commit is contained in:
meme 2019-01-31 12:53:00 -05:00 committed by MerryMage
parent dfdca2082f
commit 81fb688eef

View file

@ -152,8 +152,8 @@ int main(int argc, char** argv) {
// Execute!
cpu.Run();
// Here we would expect jit.Regs()[0] == 8
printf("R0: %u\n", jit.Regs()[0]);
// Here we would expect cpu.Regs()[0] == 8
printf("R0: %u\n", cpu.Regs()[0]);
return 0;
}