public static ILAddressingReference CreateIndirectScaled(AddressingScaleFactor scale, int displacement)
 {
     return new ILAddressingReference { Scale = scale, Displacement = displacement, Mode = ILAddressingMode.IndirectScaled };
 }
 public static ILAddressingReference CreateIndirectScaled(AddressingScaleFactor scale)
 {
     return new ILAddressingReference { Scale = scale, Mode = ILAddressingMode.IndirectScaled };
 }