FromVfpuRegisterInt() public static method

public static FromVfpuRegisterInt ( VfpuRegisterType Type, int Size, VfpuRegisterInt Register ) : VfpuRegisterInfo
Type VfpuRegisterType
Size int
Register VfpuRegisterInt
return VfpuRegisterInfo
コード例 #1
0
ファイル: VfpuUtils.cs プロジェクト: rajeshwarn/cspspemu
 public static int[] GetIndicesVector(int size, VfpuRegisterInt register) =>
 GetIndicesVector(VfpuRegisterInfo.FromVfpuRegisterInt(VfpuRegisterType.Vector, size, register));
コード例 #2
0
ファイル: VfpuUtils.cs プロジェクト: rajeshwarn/cspspemu
 public static int[,] GetIndicesMatrix(int size, VfpuRegisterInt register) =>
 GetIndicesMatrix(VfpuRegisterInfo.FromVfpuRegisterInt(VfpuRegisterType.Matrix, size, register));
コード例 #3
0
ファイル: VfpuUtils.cs プロジェクト: rajeshwarn/cspspemu
 public static int GetIndexCell(VfpuRegisterInt register) =>
 GetIndexCell(VfpuRegisterInfo.FromVfpuRegisterInt(VfpuRegisterType.Cell, 1, register));