Example #1
0
 public static VfpuRegisterInfo FromVfpuRegisterInt(VfpuRegisterType type, int size, VfpuRegisterInt register)
 {
     if (type == VfpuRegisterType.Vector && size == 1)
     {
         type = VfpuRegisterType.Cell;
     }
     return(Parse(size, VfpuConstants.GetRegisterNameByIndex(type, size, register.Value)));
 }