CSPspEmu.Core.Cpu.Assembler.MipsDisassembler.Result.GprIndexToRegisterName C# (CSharp) Method

GprIndexToRegisterName() public static method

public static GprIndexToRegisterName ( int RegisterIndex ) : String
RegisterIndex int
return String
            public static String GprIndexToRegisterName(int RegisterIndex)
            {
                return String.Format("r{0}", RegisterIndex);
            }