CSPspEmu.ArgumentReader.LoadInteger C# (CSharp) Method

LoadInteger() public method

public LoadInteger ( ) : int
return int
        public int LoadInteger()
        {
            try
            {
                return CpuThreadState.GPR[GprPosition];
            }
            finally
            {
                GprPosition++;
            }
        }