Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Verilog delay modelling

Status
Not open for further replies.

vlsi_freak

Full Member level 2
Joined
Sep 3, 2007
Messages
127
Helped
14
Reputation
28
Reaction score
8
Trophy points
1,298
Activity points
2,041
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 this statement does.
Can anyone share your thoughts.

Regards,
freak
 

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 this statement does.
Can anyone share your thoughts.

Regards,
freak

Above code has syntax errors and it won't compile
If you make some slight changes
It should work ...
Code:
module tq ( input a, output reg b);

always 


 b = #5 a;

endmodule


Output will be a delayed form of a ...

xcrt.jpg

Another way to make it work

Code:
 module tq ( input a, output reg b);

always @(*)


 b = #5 a;

endmodule

here are some good material on verilog delay modeling

1.h**p://www.see.ed.ac.uk/~gerard/Teach/Verilog/mjta/Gateway/html/delays.html
2.h**p://inst.eecs.berkeley.edu/~cs152/fa04/handouts/CummingsHDLCON1999_BehavioralDelays_Rev1_1.pdf
 
Last edited:

I have a question.

I am trying to understanding this statement. Its a part of specifying delays of standard cells.

********
specify
(A1 => ZN) = (x1, y1);
(A2 => ZN) = (x2, y2);
endspecify

************

I understand thats rising and falling delays respectively.

But does this mean that x1 is rising delay of A1 and y1 is falling delay of A1 or x1 is rising delay of ZN and y1 is falling delay of ZN, while input is A1?

I am confsed!
 

Found the answer of the question posted above.

x1 rising delay of ZN and y1 is falling delay of ZN while input is A1.


Thanks.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top