Forum Discussion
HBhat2
Contributor
6 years agoHi,
Along with derive_pll_clocks, I think to mention create_clock constraint for input reference clock(s) as well.
create_clock -name {pll_refclk0} -period 10 [get_ports {pll_refclk0}] here, pll_refclk0 is the input clock port in the top module and 10 is 10ns (ie 100MHz input clock).
With Regards,
HPB
MHahn4
Occasional Contributor
6 years agoI did that already and the two input clocks are detected wth the correct frequency during synthesis.
That's my full sdc-file:
create_clock -name {CLK_100MHz} -period 10.000 -waveform { 0.000 5.000 } [get_ports {CLK_100MHz}]
derive_pll_clocks
create_clock -name {~ALTERA_CLKUSR~} -period 10.000 -waveform { 0.000 5.000 } { ~ALTERA_CLKUSR~~ibuf|o }