Forum Discussion
Altera_Forum
Honored Contributor
13 years agoFirst, you need to create a derived clock on the FPGA's clock output pin.
Then, you set the output delay constraints relative to that clock. Something like:create_clock -name clkin1 -period 10
create_generated_clock -source clkin1 -name clkout1
set_input_delay -clock clkout1 -min $minDelay
set_input_delay -clock clkout1 -max $maxDelay with minDelay = -tHold - margin maxDelay = tSetup + margin the margin is to account for different PCB delays between the clock and the data signals