1 / 17

Delays in Verilog

Delays in Verilog. Introduction. Delays are crucial in REAL simulations Post-synthesis simulation Post-layout simulation FPGA counter-part: Post-P&R simulation Delay Models Represent different physical concepts Two most-famous models Inertial delay Transport delay. Delay Models.

Download Presentation

Delays in Verilog

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. Delays in Verilog

  2. Introduction • Delays are crucial in REALsimulations • Post-synthesis simulation • Post-layout simulation • FPGA counter-part: Post-P&R simulation • Delay Models • Represent different physical concepts • Two most-famous models • Inertial delay • Transport delay

  3. Delay Models Delays in Verilog

  4. Delay ModelsInertial Delay • The inertia of a circuit node to change value • Abstractly models the RC circuit seen at the node • Different types • Input inertial delay • Output inertial delay

  5. Delay ModelsTransport Delay • Represents the propagation time of signals from module inputs to its outputs • Models the internal propagation delays of electrical elements

  6. Delay Types Delaysin Verilog

  7. Delay Types • Rise Delay • Fall Delay • Turn-Off Delay • Min/Typ/Max Delay values

  8. Delays inGate-Level Modeling Delaysin Verilog

  9. Delays inGate-Level Modeling • Delay are shown by # sign in all verilog modeling levels • Inertial rise delay • Inertial fall delay • Inertial turn-off delay and #(rise_val, fall_val, turnoff_val) a(out,in1, in2)

  10. Delays inGate-Level Modeling (cont’d) • If no delay specified • Default value is zero • If only one value specified • It is used for all three delays • If two values specified • They refer respectively to rise and fall delays • Turn-off delay is the minimum of the two

  11. Delays inGate-Level Modeling (cont’d) • Min/Typ/Max Values • Another level of delay control in Verilog • Each of rise/fall/turnoff delays can have min/typ/max values not #(min:typ:max, min:typ:max, min:typ:max) n(out,in) • Only one of Min/Typ/Max values can be used in the entire simulation run • It is specified at start of simulation, and depends to the simulator used • Typ delay is the default

  12. Delays inDataflow Modeling Delaysin Verilog

  13. Delays inDataflow Modeling • Regular Assignment Delays assign #delay out = in1 & in2; • As in Gate-Level Modeling the delay is output-inertial delay

  14. Delays inDataflow Modeling (cont’d) • Implicit Continuous Assignment Delay wire #delay out = in1 & in2;

  15. Delays inBehavioral Modeling Delaysin Verilog

  16. Delay in Behavioral Modeling

  17. Today Summary • Delays • Models • Inertial/Transport • Types • Rise/Fall/Turn-off • Min/Typ/Max Values • Delays in Verilog • Gate-Level Modeling • Dataflow Modeling • Behavioral Modeling

More Related