Skip to content

Commit

Permalink
Better module printing
Browse files Browse the repository at this point in the history
  • Loading branch information
donn committed Dec 25, 2023
1 parent 5991260 commit 0e8db54
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/tcl_commands/sta.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,10 @@ proc run_sta {args} {
}
}
if { [llength $modules] > 0 } {
puts_warn "The following modules were black-boxed for STA as there was no timing information found: \[[join $modules ", "]\]"
puts_warn "The following modules were black-boxed for STA as there was no timing information found:"
foreach {m} $modules {
puts_warn "\t* $m"
}
}
close $fp
}
Expand Down

0 comments on commit 0e8db54

Please sign in to comment.