public ChangeInserter(VerilogProject project, VerilogModuleTree heirarchy) { this.project = project; this.heirarchy = heirarchy; this.snapArgLog = new StringBuilder(); string[] args = new string[] { "Module Name", "# Local Dff Bits", "# Chains In", "# Chains Out", "Discrete DFFs" }; snapArgLog.AppendLine(string.Join(",", args)); }
public void UpdateHeirarchy(VerilogModuleTree heirarchy) { this.heirarchy = heirarchy; }