TRoa
Occasional Contributor
6 years agoPath delay between two nets
Hi,
I have a big Verilog based design. There is a computational block in there in the design. For example one like below:
module (aa,bb,cc,dd);
input aa ,bb, cc;
output dd;
assign dd = cc ? aa : bb;
endmodule
Now, I just want to know that what will be the path delay from aa to dd? Simple.
I am trying to use Timing Analyzer. But there are many options that I am getting confused(its my first time using this tool). I am working on Cyclone IV E device.
Can anyone give a hint how to achieve that?