-
Notifications
You must be signed in to change notification settings - Fork 0
/
LOGIC_UNIT_tb.vhdl
68 lines (56 loc) · 1.14 KB
/
LOGIC_UNIT_tb.vhdl
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
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use std.env.all;
entity LOGIC_UNIT_tb is
end entity;
architecture testbench of LOGIC_UNIT_tb is
-- Component declaration
component LOGIC_UNIT
port (
IP_0, IP_1 : in std_logic_vector(7 downto 0);
S_0, S_1 : in std_logic;
OP : out std_logic_vector(7 downto 0)
);
end component;
-- Signals for test bench
signal IP_0, IP_1 : std_logic_vector(7 downto 0) := "00000000";
signal S_0, S_1 : std_logic;
signal OP : std_logic_vector(7 downto 0);
begin
-- Instantiate the design under test
uut : LOGIC_UNIT
port map(
IP_0 => IP_0,
IP_1 => IP_1,
S_0 => S_0,
S_1 => S_1,
OP => OP
);
-- Stimulus process
counter_process : process
begin
wait for 10 ns;
-- F
IP_0 <= "00101111";
-- 6
IP_1 <= "10010110";
-- OP 6
S_0 <= '0';
S_1 <= '0';
wait for 10 ns;
-- OP 9
S_0 <= '0';
S_1 <= '1';
wait for 10 ns;
-- OP F
S_0 <= '1';
S_1 <= '0';
wait for 10 ns;
-- OP 0
S_0 <= '1';
S_1 <= '1';
wait for 10 ns;
stop(0);
end process;
end architecture;