Refactored incCycle command

This commit is contained in:
Darkress
2023-06-16 20:04:50 +02:00
parent bf182815d2
commit 324912080d
32 changed files with 71 additions and 70 deletions

View File

@@ -11,6 +11,6 @@ public class Nop extends LiteralCommandUtils implements Command
{
// Do nothing, just increment the PC
ProgramCounter.incPC();
Cycles.addToCycles(1);
Cycles.incCycles();
}
}