コード例 #1
0
 private GpVariable(GpVariable other, GpRegisterType registerType, int size)
     : base(other)
 {
     RegisterType = (RegisterType)registerType;
     Size         = size;
 }
コード例 #2
0
 internal GpRegister(GpRegisterType type, int index)
 {
     RegisterType = (RegisterType)type;
     Index        = index;
     Size         = _sizeMap[type];
 }