VHDL looping query

OP #4981265
Rate this post
useful
not useful
I have a list of constants as shown in the image attached. They are 
record type. I am trying to run a loop in which I can access all of them 
one by one. Could somebody suggest a way to do that?

I am trying something like :

for i in 0 to 5 loop
obj(i).........
end loop;
Attached files:
Guest #4981380
Rate this post
useful
not useful
You have to build an array of constants of type
<objecttype> and assign each element one of your
object constants (two definitions, one for the
array type, one for the array incl. your constants).

The next step is to loop over all ellements of
this array of constants.

Reply

Please log in before posting.

or

Log in with Google account

Registration is free and takes only a minute.

Register now