Forum Discussion
Altera_Forum
Honored Contributor
13 years agoI had one case where the clocks were a strange frequency(I think 4/5ths of each other) and we couldn't do it with multicycles. Instead use
set_max_delay -from [get_clocks {clkA}] -to [get_clocks {clkB}] 4.0 Where the value is whatever setup relationship you want. This will do the exact same analysis but you're directly entering a value instead of multicycle. (I was annoyed that we couldn't achieve it with Multicycles, but this works perfectly fine)