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.

How much clock do I need for this for loop in Verilog?

Status
Not open for further replies.

alangs

Member level 3
Joined
Feb 5, 2010
Messages
57
Helped
3
Reputation
6
Reaction score
3
Trophy points
1,288
Location
india
Activity points
1,681
for loop in verilog

how much clock is required for the below for loop...

always @ (posedge clk)begin
for(index = 0;index < 10;index = index + 1)begin
row1[index] <= #1 row2[index];
end
end

In simulation i see it is taking only clock....is it possible???
 

for loop in verilog

Iteration schemes in HDL are creating parallel logic rather than sequential action. Thus all iteration branches are assigned at the same clock edge respectively asynchronously, depending on the surrounding block.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top