public void Run() { _stopwatch = Stopwatch.StartNew(); while (Pins.Vcc) { if (_interruptsLogic.Process()) { continue; } if (Pins.Reset) { _instructionDecoder.DecodeAndExecute(); } } }