We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 476dbce + 47d4b4c commit 1cbb914Copy full SHA for 1cbb914
flow/platforms/asap7/constraints.sdc
@@ -81,3 +81,11 @@ set max_delay 80
81
set_max_delay $max_delay -from $non_clk_inputs -to [all_registers]
82
set_max_delay $max_delay -from $all_register_outputs -to [all_outputs]
83
set_max_delay $max_delay -from $non_clk_inputs -to [all_outputs]
84
+
85
+# This allows us to view the different groups
86
+# in the histogram in the GUI and also includes these
87
+# groups in the report
88
+group_path -name in2reg -from $non_clk_inputs -to [all_registers]
89
+group_path -name reg2out -from [all_registers] -to [all_outputs]
90
+group_path -name reg2reg -from [all_registers] -to [all_registers]
91
+group_path -name in2out -from $non_clk_inputs -to [all_outputs]
0 commit comments