From 35d0288ad571f42ca1a02598ad348eaaf9c35cf4 Mon Sep 17 00:00:00 2001 From: Vladislav Borshch Date: Thu, 9 Nov 2023 18:40:05 +0700 Subject: [PATCH] fix bug with incorrect slacks definitions --- utils/vivado_timing.tcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/vivado_timing.tcl b/utils/vivado_timing.tcl index 3edb403..52709be 100644 --- a/utils/vivado_timing.tcl +++ b/utils/vivado_timing.tcl @@ -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"