Comment fix

This commit is contained in:
Stefan Wessels 2024-09-10 19:27:24 -07:00
parent 8a40be6ff0
commit 1496ca5762

View File

@ -359,9 +359,10 @@ int main(int argc, char* argv[]) {
}
}
// Step the Apple II sim one cycle
// Step the sim one instruction
int cycles = 0;
do {
// Step the sim one cycle
machine_step(&m);
cycles++;
} while(m.cpu.instruction_cycle != -1);