shaiko
Advanced Member level 5
- Joined
- Aug 20, 2011
- Messages
- 2,644
- Helped
- 303
- Reputation
- 608
- Reaction score
- 297
- Trophy points
- 1,363
- Activity points
- 18,302
Signal x is defined as an unconstrained array output port.
Somewhere in my design, I want to reset all the array elements.
I tried using:
Compilation fails with the following error:
Any idea how I can work around the problem and still leave the array port unconstrained ?
Somewhere in my design, I want to reset all the array elements.
I tried using:
Code:
x <= ( others => ( others => '0' ) ) ;
OTHERS choice cannot be used in unconstrained array aggregate
Any idea how I can work around the problem and still leave the array port unconstrained ?