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

SetInstructionAddressStartAndCurrent() public method

public SetInstructionAddressStartAndCurrent ( uint value ) : void
value uint
return void
        public void SetInstructionAddressStartAndCurrent(uint value)
        {
            this.InstructionAddressCurrent = value & PspMemory.MemoryMask;
            this.InstructionAddressStart = value & PspMemory.MemoryMask;
        }