Intel® Quartus® Prime Software
Intel® Quartus® Prime Design Software, Design Entry, Synthesis, Simulation, Verification, Timing Analysis, System Design (Platform Designer, formerly Qsys)

Simulating gate delays

appu69
Beginner
1,653 Views

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.?

0 Kudos
1 Reply
AnandRaj_S_Intel
Employee
641 Views

Hi,

 

Look into example from below link.

https://wiki.eecs.yorku.ca/course_archive/2012-13/F/3201/_media/tutorial_quartusii_timing_simulation_verilog.pdf

 

If you are using modelsim/VWF

Launch gate level simulation from tools/VWF->Run simulation Tools->Gate level/timing simulation. Before that you need to setup path go to tools->options->EDA Tools option->modelsim altera ->give the modelsim path example "C:\intelFPGA\17.0\modelsim_ase\win32aloem".

 

You can find more useful information from previous threads kindly check below threads.

https://forums.intel.com/s/question/0D50P00003yyIOXSA2/i-have-problem-with-functional-simulation-with?language=en_US

https://forums.intel.com/s/question/0D50P00003yyGJwSAM/help-whats-the-difference-between-functional-simulation-and-timing-one?language=en_US

 

Regards

Anand

0 Kudos
Reply