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