Emul8.Peripherals.CPU.TranslationCPU.UpdateInstructionCounter C# (CSharp) Метод

UpdateInstructionCounter() приватный Метод

private UpdateInstructionCounter ( int value ) : void
value int
Результат void
        private void UpdateInstructionCounter(int value)
        {
            ExecutedInstructions += value;
            var instructionsThisTurn = value + instructionCountResiduum;
            instructionCountResiduum = instructionsThisTurn % PerformanceInMips;
            ClockSource.Advance(instructionsThisTurn / PerformanceInMips);
        }
TranslationCPU