Skip to content

Commit 35d0288

Browse files
committed
fix bug with incorrect slacks definitions
1 parent e45362e commit 35d0288

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/vivado_timing.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ open_project $_xil_proj_path_/$_xil_proj_name_
77
open_run impl_1
88

99
puts "-> Timings check starts..."
10-
set whs [get_property SLACK [get_timing_paths -setup -hold]]
11-
set wns [get_property SLACK [get_timing_paths]]
10+
set whs [get_property SLACK [get_timing_paths -hold]]
11+
set wns [get_property SLACK [get_timing_paths -setup]]
1212
puts "-> WHS: $whs"
1313
puts "-> WNS: $wns"
1414

0 commit comments

Comments
 (0)