Forum Discussion
Altera_Forum
Honored Contributor
15 years agoHi FvM,
Is this the pin to pin delay i should show? And a question: what's the difference between pin-to-pin delay and internal delays? Why it doesn't affect fmax? I used cyclone. and my code:
module mux(d,o,mux_sel,mux_out);
input d;
input o;
input mux_sel;
output reg mux_out;
always@(*)
if(mux_sel)
mux_out=o;
else
mux_out=d;
endmodule