Altera_Forum
Honored Contributor
14 years agoquestion about VHDL code
Hi guys,
I am wondering what circuit will be generated based on the following VHDL code by Quartus II synthesizer? Thanks. /****VHDL code begins****/ entity con_0 is port ( cout: out bit_vector(3 downto 0)); end con_0; architecture con_0_arch of con_0 is begin cout<="0101"; end con_0_arch; /****VHDL code ends****/