Forum Discussion
Altera_Forum
Honored Contributor
14 years agoset_clock_groups is pretty safe as long as you don't use the special syntax of having only one -group. That tells it to cut the clocks in that group from all other clocks in the design without explicitly naming them, so it's an implicit cut. You should merge them:
set_clock_groups -asynchronous -group { real_clk } -group { real_clkb } -group { real_clkb } This only cuts between clocks in different groups of the same command, but will not cut timing to any clocks not listed.