Forum Discussion
Altera_Forum
Honored Contributor
10 years agoTry:
create_clock -name {clk50a} -period 20.000 -waveform { 0.000 10.000 } [get_ports {clk50a}] Otherwise you create a clock named clk50a to be used for timing analysis, but you don't bind it to any physical signal. To be clearer, in general you define create_clock -name {myclk} -period 20.000 -waveform { 0.000 10.000 } [get_ports {clk50a}] and then use myclk to analyze this clock net.