Forum Discussion

appu69's avatar
appu69
Icon for New Contributor rankNew Contributor
7 years ago

Simulating gate delays

Hey!

I recently started using Intel Quartus Prime Lite edition for simulating Verilog codes.

I came across the topic of gate delays in a book..

for eg. In a verilog code if I write a line of code as such :

module simple_circuit(A, B, C, D, E);

input A, B, C;

output D, E;

and #30 G1 (w1, A, B);

not #10 G2 (E,C);

or #20 G3 (D, w1, E);

endmodule

how do I view the simulation of gate delays.?

1 Reply