-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlogicUnit_16bits_tb.vhd
executable file
·90 lines (64 loc) · 1.75 KB
/
logicUnit_16bits_tb.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
ENTITY logicUnit_16bits_tb IS
END logicUnit_16bits_tb;
ARCHITECTURE behavior OF logicUnit_16bits_tb IS
-- Component Declaration for the Unit Under Test (UUT)
COMPONENT logicUnit
PORT(
Ain : IN std_logic_vector(15 downto 0);
Bin : 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 Ain : std_logic_vector(15 downto 0) := (others => '0');
signal Bin : 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: logicUnit PORT MAP (
Ain => Ain,
Bin => Bin,
s0 => s0,
s1 => s1,
G => G
);
-- Stimulus process
stim_proc: process
begin
-- hold reset state for 100 ns.
-- wait for 100 ns;
-- A and B
Ain<="0000000000000101";
Bin<="0000000000000110";
s0<='0';
s1<='0';
wait for 100ns;
--A OR B
Ain<="1111111111111101";
Bin<="0000000000000001";
s0<='1';
s1<='0';
wait for 100ns;
--A XOR B
Ain<="1111111111111101";
Bin<="0000000000000001";
s0<='0';
s1<='1';
wait for 100ns;
--NOT X
Ain<="1111111111111000";
Bin<="0000000000000001";
s0<='1';
s1<='1';
wait;
end process;
END;