CSPspEmu.Core.Gpu.GpuDisplayList.SetInstructionAddressStall C# (CSharp) Method

SetInstructionAddressStall() public method

public SetInstructionAddressStall ( uint value ) : void
value uint
return void
        public void SetInstructionAddressStall(uint value)
        {
            InstructionAddressStall = value & PspMemory.MemoryMask;
            if (InstructionAddressStall != 0 && !PspMemory.IsAddressValid(InstructionAddressStall))
            {
                throw (new InvalidOperationException(String.Format("Invalid StallAddress! 0x{0}", InstructionAddressStall)));
            }
            if (Debug) Console.WriteLine("GpuDisplayList.SetInstructionAddressStall:{0:X8}", value);
            StallAddressUpdated.Set();
        }