Skip to content

Commit 1cbb914

Browse files
authored
Merge pull request #2157 from Pinata-Consulting/mock-array-asap7-path-groups
asap7: add path groups to constraints.sdc
2 parents 476dbce + 47d4b4c commit 1cbb914

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

flow/platforms/asap7/constraints.sdc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,11 @@ set max_delay 80
8181
set_max_delay $max_delay -from $non_clk_inputs -to [all_registers]
8282
set_max_delay $max_delay -from $all_register_outputs -to [all_outputs]
8383
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

Comments
 (0)