Forum Discussion
Altera_Forum
Honored Contributor
9 years agoIs the path fully inside a DSP block? If so, the router can't add delay and the clock skew may be too large. If that's the case, please try to have all the DSP registers use the same clock domain and then transfer between domains in the fabric.
If the path is in the fabric, you could overconstrain it. Add to your .sdc: if {$::quartus(nameofexecutable) != "quartus_sta"} { set_min_delay -from [get_clocks REGCLK] -to [get_clocks SCLK] 0.2 } This constraint will be seen by the fitter so it tries to add more delay, but in timing sign-off you'll have the correct 0ns analysis.