コード例 #1
0
ファイル: Instruct.cs プロジェクト: QsCompany/Qs
 public Instruct(string fnName, Operand destination = null, Operand source = null)
 {
     Function    = CUal.GetFunction(fnName);
     Destination = destination;
     Source      = source;
 }
コード例 #2
0
ファイル: Instruct.cs プロジェクト: QsCompany/Qs
 protected Instruct(byte hashFn)
 {
     Function = CUal.GetFunction(hashFn);
 }
コード例 #3
0
ファイル: Instruct.cs プロジェクト: QsCompany/Qs
 public Instruct(byte hashFn, Operand destination = null, Operand source = null)
 {
     Function    = CUal.GetFunction(hashFn);
     Destination = destination;
     Source      = source;
 }
コード例 #4
0
ファイル: Instruct.cs プロジェクト: QsCompany/Qs
 protected Instruct(string fnName)
 {
     Function = CUal.GetFunction(fnName);
 }