LIBRARY Ieee
LIBRARY Ieee
USE ieee.std_logic_1164.ALL;
ENTITY cv_counter_tb IS
END cv_counter_tb;
COMPONENT cv_counter
PORT(
cnt : INOUT std_logic_vector(2 downto 0);
clk : IN std_logic
);
END COMPONENT;
--Inputs
signal clk : std_logic := '0';
--BiDirs
signal cnt : std_logic_vector(2 downto 0);
BEGIN
-- Stimulus process
stim_proc: process
begin
-- hold reset state for 100 ns.
wait for 100 ns;
wait;
end process;
END;