Merge pull request #424 from meme/readme

Correct README (`jit` to `cpu`)
This commit is contained in:
Mat M 2019-02-01 00:31:35 -05:00 committed by MerryMage
commit a1663d08ed

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;
}