eafox
Newbie level 3
- Joined
- Apr 2, 2013
- Messages
- 3
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,298
Is it possible to instantiate multiple subcircuits using a loop?
I'm thinking about something like this:
Thanks,
Edson
I'm thinking about something like this:
Code:
...
generic( N: integer:= 4);
...
for i in 1 to N loop
unit_i: entity work.subcircuit(arch)
port map(...)
end loop;
...
Thanks,
Edson