Forum Discussion

NuvKFC's avatar
NuvKFC
Icon for Contributor rankContributor
3 years ago
Solved

How to constraint min delay between LCELLs?

Some asynchronous need to use LCELLs to generate pulses, like following example.

However, the delay of LCELLs is different on the difference FPGA device.

So, I use following constraints to constraint the min delay of LCELL.

But it doesn't work.

How to constraint min delay between LCELLs?

Thank you very much.

Ex.:

lcell dly1d (.out(y1), .in(A) );

lcell dly4d (.out(y), .in(y1) );

Constraints:

set_min_delay 5.0 -from [get_pins dly1d|combout] \

-to [get_pins dly4d|combout]

set_net_delay -min 5.0 -from [get_pins dly1d|combout] \

-to [get_pins dly4d|combout]

26 Replies