html5-img
1 / 16

ELEN 468 Advanced Logic Design

ELEN 468 Advanced Logic Design. Lecture 3 Simulation and Testbench. Overview. Analog simulation Event-driven logic simulation Signal levels in logic simulation Propagation delay Inertial delay Testbench. v. t. Analog Simulation. Simulate waveforms

zarola
Download Presentation

ELEN 468 Advanced Logic Design

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. ELEN 468Advanced Logic Design Lecture 3 Simulation and Testbench ELEN468 Lecture 3

  2. Overview • Analog simulation • Event-driven logic simulation • Signal levels in logic simulation • Propagation delay • Inertial delay • Testbench ELEN468 Lecture 3

  3. v t Analog Simulation • Simulate waveforms • Trace every signal at every time point at certain sampling rate • Precise • Long simulation time ELEN468 Lecture 3

  4. Logic Simulation • At any moment, most signals are quiescent • Very few signal levels • At any simulation time, trace only signals with transitions (event) • Propagate events from inputs toward outputs • In a logic simulator • An ordered list of “event-times” • At each even time, an event queue is maintained ELEN468 Lecture 3

  5. Set of Logic Values • Sometimes, {0, 1} is not enough a 0 If a = b = 0, c = ? c If a = b = 1, c = ? 1 b ELEN468 Lecture 3

  6. Logic Values in Verilog • 0: Logical 0 • 1: Logical 1 • x: unknown • z: high impedance ELEN468 Lecture 3

  7. X and Z a • a = b = 0: c = Z • a = b = 1: c = X • Initially, every line is X • X is used in simulation. In real circuit, the value is determined by the circuit 0 c 1 b ELEN468 Lecture 3

  8. Simulation without Delay A X B X A C C D X B D X Y 0 10 20 30 40 50 tsim A = x B = x C = x D = x A = 1 B = 0 B = 1 A = 0 B = 0 C = 1 C = 0 C = 0 D = 0 D = 1 D = 1 ELEN468 Lecture 3

  9. Simulation with Delay A X B X A C D C 3 2 X 13 B D X 0 10 20 30 40 50 15 tsim A = x B = x C = x D = x A = 1 B = 0 B = 1 A = 0 B = 0 C = 1 C = 0 C = 0 D = 0 D = 1 D = 1 ELEN468 Lecture 3

  10. Inertial Delay • Delay is caused by charging and discharging node capacitors in circuit • Gate delay and wire delay • Pulse rejection • If pulse with is less than delay, the pulse is ignored A C D B ELEN468 Lecture 3

  11. Example of De-scheduling A B A C D C 3 2 D B 0 10 20 30 40 50 T_sim 33 35 15 A=x B=x C=x D=x A=1 B=0 B=1 C=0 D=1 C=1 D=0 A=0 C=1 ELEN468 Lecture 3

  12. Testbench Stimulus generator Unit_Under_Test Design_Unit_Test_Bench Response monitor ELEN468 Lecture 3

  13. Some New Keywords • initial declares one-shot behaviors • $monitor task is used to observe events • $time returns simulation time • $stop task stops execution and wait for interactive input • $finish returns control to operating system ELEN468 Lecture 3

  14. Example of NAND Latch G1 preset q 1 qbar 1 clear G2 module Nand_Latch_1 (q, qbar, preset, clear); output q, qbar; input preset, clear; nand G1 (q, preset, qbar), G2 (qbar, clear, q); endmodule ELEN468 Lecture 3

  15. Example of Testbench module test_Nand_Latch_1; reg preset, clear; wire q, qbar; Nand_Latch_1 M1 (q, qbar, preset, clear); // Instantiate UUT initial // Create response monitor $monitor ($time, "preset=%b clear=%b q=%b qbar=%b", preset, clear, q, qbar); initial begin // Create DUTB stimulus generator #10 preset = 0; clear = 1; #10 preset = 1; $stop; // Enter . to proceed #10 clear = 0; #10 clear = 1; #10 preset = 0; end initial #60 $finish; // Finish simulation endmodule G1 preset q 1 qbar 1 clear G2 ELEN468 Lecture 3

  16. Simulation Results G1 preset q preset 1 1 tsim 0 10 20 30 40 50 clear qbar 1 1 clear G2 tsim 0 10 20 30 40 50 q 1 0 preset = x clear = x q = x qbar = x 10 preset = 0 clear = 1 q = x qbar = x 11 preset = 0 clear = 1 q = 1 qbar = x 12 preset = 0 clear = 1 q = 1 qbar = 0 20 preset = 1 clear = 1 q = 1 qbar = 0 30 preset = 1 clear = 0 q = 1 qbar = 0 31 preset = 1 clear = 0 q = 1 qbar = 1 32 preset = 1 clear = 0 q = 0 qbar = 1 40 preset = 1 clear = 1 q = 0 qbar = 1 tsim 0 10 20 30 40 50 qbar 1 tsim 0 10 20 30 40 50 ELEN468 Lecture 3

More Related