-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogic_circuit_tb.vhd
More file actions
74 lines (57 loc) · 1.31 KB
/
Copy pathlogic_circuit_tb.vhd
File metadata and controls
74 lines (57 loc) · 1.31 KB
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
72
73
74
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
ENTITY logic_circuit_tb IS
END logic_circuit_tb;
ARCHITECTURE behavior OF logic_circuit_tb IS
-- Component Declaration for the Unit Under Test (UUT)
COMPONENT logic_circuit
PORT(
A : IN std_logic_vector(15 downto 0);
B : IN std_logic_vector(15 downto 0);
s0 : IN std_logic;
s1 : IN std_logic;
G : OUT std_logic_vector(15 downto 0)
);
END COMPONENT;
--Inputs
signal A : std_logic_vector(15 downto 0) := (others => '0');
signal B : std_logic_vector(15 downto 0) := (others => '0');
signal s0 : std_logic := '0';
signal s1 : std_logic := '0';
--Outputs
signal G : std_logic_vector(15 downto 0);
BEGIN
-- Instantiate the Unit Under Test (UUT)
uut: logic_circuit PORT MAP (
A => A,
B => B,
s0 => s0,
s1 => s1,
G => G
);
-- Stimulus process
stim_proc: process
begin
-- hold reset state for 100 ns.
wait for 100 ns;
A <= "1000000000000011";
B <= "1000000000000010";
-- F = A AND B
s0 <= '0';
s1 <= '0';
wait for 100 ns;
-- F = A OR B
s0 <= '1';
s1 <= '0';
wait for 100 ns;
-- F = A XOR B
s0 <= '0';
s1 <= '1';
wait for 100 ns;
-- F = NOT A
s0 <= '1';
s1 <= '1';
wait for 100 ns;
wait;
end process;
END;