Merge pull request #424 from meme/readme
Correct README (`jit` to `cpu`)
This commit is contained in:
commit
a1663d08ed
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue