Altera_Forum
Honored Contributor
14 years agoVerilog delay modelling
Hi, My verilog code is shown below, Code: module tq ( input a, output reg b); always (*) b =# 5 a; endmodule I am unable to make out the waveform, what actually t...