CSPspEmu.Hle.Managers.HleInterruptManager.HleInterruptManager C# (CSharp) Method

HleInterruptManager() private method

private HleInterruptManager ( ) : System.Collections.Generic
return System.Collections.Generic
        private HleInterruptManager()
        {
            for (int n = 0; n < InterruptHandlers.Length; n++)
            {
                InterruptHandlers[n] = new HleInterruptHandler(
                    this,
                    (PspInterrupts)n,
                    HleCallbackManager
                );
            }
        }