Altera_Forum
Honored Contributor
14 years agoTimeQuest/Tcl trouble
Hi guys,
I was wondering if someone could help me understand why Tcl command 'set' and its respective variable (dereferenced with $) are not recognized by set_clock_groups SDC command? For instance, I have a PLL generated clock: inst19|altpll_component|auto_generated|pll1|clk[0] And I want to cut its name down, so it would be easier to use it later, so I write: set clk_40 inst19|altpll_component|auto_generated|pll1|clk[0] Now, I can reference the signal by writing $clk_40, but this is not working for the set_clock_groups command: set_clock_groups -asynchronous -group {clk_24 $clk_40} Btw, clk_24 is the clock name of the PLL inclk, and it gets recognized (of course), but $clk_40 doesn't. Also, even stranger thing is that set_false_path command seems to properly see $clk_40. (?!?) Anyone got any idea? I'm using Quartus 10.1 sp1.