Exemplo n.º 1
0
 public static EmulatedValue New(this EmulatedValue value, Int32 newValue)
 {
     return(new EmulatedValue(value.Name, value.IsTemp, B2R2.BitVector.OfInt32(newValue, 32), value.Type));
 }
Exemplo n.º 2
0
 public static UInt64 ToUInt64(this EmulatedValue value)
 {
     return(B2R2.BitVector.ToUInt64(value.Value));
 }
Exemplo n.º 3
0
 public static Int32 ToInt32(this EmulatedValue value)
 {
     return(B2R2.BitVector.ToInt32(value.Value));
 }