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