Esempio n. 1
0
 public Instruct(string fnName, Operand destination = null, Operand source = null)
 {
     Function    = CUal.GetFunction(fnName);
     Destination = destination;
     Source      = source;
 }
Esempio n. 2
0
 protected Instruct(byte hashFn)
 {
     Function = CUal.GetFunction(hashFn);
 }
Esempio n. 3
0
 public Instruct(byte hashFn, Operand destination = null, Operand source = null)
 {
     Function    = CUal.GetFunction(hashFn);
     Destination = destination;
     Source      = source;
 }
Esempio n. 4
0
 protected Instruct(string fnName)
 {
     Function = CUal.GetFunction(fnName);
 }