This file is intended to be loaded by Logisim-evolution (https://github.com/reds-heig/logisim-evolution). addr/data: 8 8 0 library ieee; use ieee.std_logic_1164.all; entity TCL_Generic is port( --Insert input ports below horloge_i : in std_logic; -- input bit example val_i : in std_logic_vector(3 downto 0); -- input vector example --Insert output ports below max_o : out std_logic; -- output bit example cpt_o : out std_logic_Vector(3 downto 0) -- output vector example ); end TCL_Generic;