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.

Need help to simulate the verilog code given below

Status
Not open for further replies.

mondeo007

Newbie level 1
Joined
Mar 4, 2010
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,289
WHY?

i worte a verilog code, but i can't stimulate by modelsim because this loop

always
for(i=0;i<32;i=i+1)
begin
for(j=0;j<32;j=j+1)
begin
tempreg=regout[j];
tempgroup[j]=tempreg;
end
g=tempgroup;
end

it never stop at second for loop

does anyone know why???
thank so much
 

How are i & j declared?
 

Re: WHY?

how many input's temp reg has?


for loop will be executed in single clock cycle..............
 

always without sensitivity list is a forever loop?
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top