Forum Discussion
Altera_Forum
Honored Contributor
10 years agoFrom pin-to-pin, probably the quickest way is to do:
set_max_delay -from [get_pins {din_a din_b}] -to [get_pins {delayed_a delayed_b}] 25.0 set_min_delay -from [get_pins {din_a din_b}] -to [get_pins {delayed_a delayed_b}] 25.0 Now, that's saying it has to be a perfect 25ns, which is impossible to dial in that precise and impossible over PVT, so to actually meet timing you need to expand them: set_max_delay -from [get_pins {din_a din_b}] -to [get_pins {delayed_a delayed_b}] 33.33 set_min_delay -from [get_pins {din_a din_b}] -to [get_pins {delayed_a delayed_b}] 16.66 This relies on the router adding delay to meet your minimum requirement, and to be honest, I'm not sure if it does for that device, as I've never tried it.