Forum Discussion
Altera_Forum
Honored Contributor
10 years agoBig IC delay timing
Hi guys! I'm using Cyclone V FPGA and have some probles with timing. There are some faling path with IC delay above 11ns (it's seem that this the reason). In my design I use 2 clocks: 100MHz and 200M...
Altera_Forum
Honored Contributor
10 years agoYou can resolve this problem using "set_malticycle_path end" constraint for SDC to set both setup and hold edge.
set_multicycle_path -end -setup -from [get_cells FF1] -to [get_cells FF2] N set_multicycle_path -end -hold -from [get_cells FF1] -to [get_cells FF2] N-1 or using more than 2 FFs in this path, and set false_path constraint to SDC.