Exemple #1
0
 /*-------------------- Constructors ---------------------------------*/
 public FloatInstr(SpecialOp inst, float f)
     : base((uint)inst)
 {
     fVal = f;
     size += 4;
 }
Exemple #2
0
 /*-------------------- Constructors ---------------------------------*/
 public DoubleInstr(SpecialOp inst, double d)
     : base((uint)inst)
 {
     val = d;
     size += 8;
 }
Exemple #3
0
 /*-------------------- Constructors ---------------------------------*/
 public SigInstr(SpecialOp inst, CalliSig sig)
     : base((uint)inst)
 {
     signature = sig;
     size += 4;
 }
Exemple #4
0
 /*-------------------- Constructors ---------------------------------*/
 public StringInstr(SpecialOp inst, string str)
     : base((uint)inst)
 {
     val = str;
     size += 4;
 }
Exemple #5
0
 /*-------------------- Constructors ---------------------------------*/
 public LongInstr(SpecialOp inst, long l)
     : base((uint)inst)
 {
     val = l;
     size += 8;
 }