Altera_Forum
Honored Contributor
14 years agogate delays
Hi,
I need to implement a boolean function using nand and nor gates , and the gates should have 20ns delays. How should I change the following verilog code? and how could I simulate the results? is it possible to manually adjust the gate delays? module nand ( a,b,c); input a,b; output c; nand(c,a,b); endmodule does# 20 nand(c,a,b) work?