PPT ½½¶óÀ̵å
Arrays are groups of elements, all of the same type !
type WORD is array (3 downto 0) of std_logic ;
What are the possible values for each element of the array ?
type DATA is array (3 downto 0) of integer range 0 to 9 ;
Remember to specify the integer range, to limit width of synthesized module !