Forum Discussion
Altera_Forum
Honored Contributor
12 years agoYes. Whenever you do:
create_clock -period Xns TQ assumes the rising edge is at 0ns and the falling edge is at X/2ns. If you don't want that, use the -waveform option to do something different, like: create_clock -period 10.0 -waveform {1.0 6.} This is a clock with a rising edge at 1 and falling at 6, i.e. shifted 1ns in time.