Skip to content

Commit

Permalink
fix bug with incorrect slacks definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
vborchsh committed Nov 9, 2023
1 parent e45362e commit 35d0288
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/vivado_timing.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ open_project $_xil_proj_path_/$_xil_proj_name_
open_run impl_1

puts "-> Timings check starts..."
set whs [get_property SLACK [get_timing_paths -setup -hold]]
set wns [get_property SLACK [get_timing_paths]]
set whs [get_property SLACK [get_timing_paths -hold]]
set wns [get_property SLACK [get_timing_paths -setup]]
puts "-> WHS: $whs"
puts "-> WNS: $wns"

Expand Down

0 comments on commit 35d0288

Please sign in to comment.