Forum Discussion
1 Reply
- Altera_Forum
Honored Contributor
that is not an array - it is a type declaration. You initialise the signal/variable/constant when you declare it.
constant some_array : dataout := (others => (others => (others =>'0'))); btw - dataout is a very poor name choice for a type. At least call it dataout_type or similar.