Forum Discussion
Altera_Forum
Honored Contributor
9 years agoSo, 'Digit1_Output' is a 4-bit value. Which bit of that are you trying to connect your std_logic 'clock_output' to?
I suggest you changeDigit1_Output: out unsigned(3 downto 0) to Digit1_Output: out std_logic_vector(3 downto 0) At the top level connect a new 4-bit std_logic_vector signal in place of 'clock_output' and then connect 'clock_output' to whichever bit of 'Digit1_Output' you need. Cheers, Alex