Forum Discussion
Altera_Forum
Honored Contributor
17 years agoAs Rysc thought, it sounds like you want the constraint on a crossing between asynchronous clock domains. That what the examples below are for on the set_max_delay and set_min_delay on-line help pages.
--- Quote Start --- # Apply a 10ns max delay between two unrelated clocks set_max_delay -from [get_clocks clkA] -to [get_clocks clkB] 10.000 --- Quote End --- --- Quote Start --- # Apply a 0ns min delay between two unrelated clocks set_min_delay -from [get_clocks clkA] -to [get_clocks clkB] 0.000 --- Quote End ---