CSPspEmu.Core.Cpu.Instruction.set C# (CSharp) Method

set() private method

private set ( int Offset, int Count, uint SetValue ) : void
Offset int
Count int
SetValue uint
return void
        private void set(int Offset, int Count, uint SetValue)
        {
            this.Value = BitUtils.Insert(this.Value, Offset, Count, SetValue);
        }