Example #1
0
File: CPU.cs Project: LesCol/Chip8
 public void Clock()
 {
     SoundTimer.Tick();
     DelayTimer.Tick();
     lock (this) {
         ushort instruction = GetNextInstruction();
         quit = ProcessInstruction(instruction);
     }
 }
Example #2
0
 public void Tick60hz()
 {
     DelayTimer.Tick();
     SoundTimer.Tick();
 }