コード例 #1
0
 public ArchitectureBase(string name, string instName)
     : base()
 {
     this.name     = name;
     this.instName = instName;
     scheduler     = new ProcessScheduler(this);
 }
コード例 #2
0
 public ProcessRuntimeInfo(ProcessRuntimeDelegare runtime, ProcessScheduler parent, List <Signal> sensitivityList)
 {
     this.runtime         = runtime;
     this.parent          = parent;
     this.sensitivityList = sensitivityList;
 }
コード例 #3
0
 public ProcessRuntimeInfo(ProcessRuntimeDelegare runtime, ProcessScheduler parent)
     : this(runtime, parent, new List <Signal>())
 {
 }