CSPspEmu.Core.Cpu.InstructionCache.MethodCompilerThread.AddPCLater C# (CSharp) Method

AddPCLater() public method

public AddPCLater ( uint PC ) : void
PC uint
return void
        public void AddPCLater(uint PC)
        {
            lock (this)
            {
                if (_ShouldAdd(PC))
                {
                    _AddedPC(PC);
                    ExploreQueue.AddLast(PC);
                }
            }
        }