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 to convert for loop aa a synthesizable code

Status
Not open for further replies.

praisy faith

Newbie level 1
Newbie level 1
Joined
Oct 30, 2013
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
5
my code is shown below
l=0;
if(l<100)
begin
for(i=l+1;i<l+4;l=l+1)
a=mem;
end

can u give me synthesizable code fr the above problem
 

l=0;

for(l=0;l<100;l++)
{
a[l]=mem[l];
}

Simple...
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top