forked from alessandro-montanari/vhdl-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CounterTest.vhd
71 lines (57 loc) · 1.34 KB
/
CounterTest.vhd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
-- Alessandro Montanari 880606-Y555
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
ENTITY CounterTest IS
END CounterTest;
ARCHITECTURE behavior OF CounterTest IS
constant bits : integer := 3;
-- Component Declaration for the Unit Under Test (UUT)
COMPONENT Counter
generic(n : POSITIVE := 10);
PORT(
clk : IN std_logic;
en : IN std_logic;
reset : IN std_logic;
output : OUT std_logic_vector(bits-1 downto 0)
);
END COMPONENT;
--Inputs
signal clk : std_logic := '0';
signal en : std_logic := '0';
signal reset : std_logic := '0';
--Outputs
signal output : std_logic_vector(bits-1 downto 0);
-- Clock period definitions
constant clk_period : time := 10 ns;
BEGIN
-- Instantiate the Unit Under Test (UUT)
uut: Counter GENERIC MAP(bits) PORT MAP (
clk => clk,
en => en,
reset => reset,
output => output
);
-- Clock process definitions
clk_process :process
begin
clk <= '0';
wait for clk_period/2;
clk <= '1';
wait for clk_period/2;
end process;
-- Stimulus process
stim_proc: process
begin
wait for 10 ns;
reset <= '0';
wait for 10ns;
reset <= '1';
wait for 10ns;
en <= '1';
wait for 100ns;
en <= '0';
wait for 50ns;
reset <= '0';
wait;
end process;
END;