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.

When to us assign and always in Verilog HDL?

Status
Not open for further replies.

sally wang

Newbie level 5
Joined
Jan 2, 2008
Messages
10
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,336
ques on Verilog HDL

in Verilog HDL, when should I use 'assign', and when use 'always'? Anyone understands this area can help me modify this Verilog code?

module led1(CLK,SMP,OVR,UPL,TRG);
input CLK;
output SMP,OVR,UPL,TRG;

always @ (CLK)
SMP <= 1'b0;
OVR <= 1'b0;
UPL <= 1'b0;
TRG <= 1'b0;
endmodule
 

ques on Verilog HDL

Hi,
Find your response inside this document:

#975430
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top