Forum Discussion
Altera_Forum
Honored Contributor
14 years agoTry
din: in std_logic_vector(3 downto 0); -- data in The error message tells you that your port din doesn't have a defined size. AFAIK unconstrained arrays can't be used on ports.Try
din: in std_logic_vector(3 downto 0); -- data in The error message tells you that your port din doesn't have a defined size. AFAIK unconstrained arrays can't be used on ports.