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

FprIndexToRegisterName() public static method

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