increase Cycles after every Instruction

This commit is contained in:
darkress
2023-06-12 13:34:25 +02:00
parent 2a24c2058f
commit 97e2c26d01
34 changed files with 83 additions and 0 deletions

View File

@@ -62,6 +62,7 @@ public class Memory
if(address == 0x2) //Check if PCL is destination
{
ProgramCounter.loadPc();
Cycles.addToCycles(1);
}
}