public void Clock() { SoundTimer.Tick(); DelayTimer.Tick(); lock (this) { ushort instruction = GetNextInstruction(); quit = ProcessInstruction(instruction); } }
public void Tick60hz() { DelayTimer.Tick(); SoundTimer.Tick(); }