-
Notifications
You must be signed in to change notification settings - Fork 0
/
ARITHMETIC_UNIT_tb.vhdl
102 lines (86 loc) · 1.69 KB
/
ARITHMETIC_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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use std.env.all;
entity ARITHMETIC_UNIT_tb is
end entity;
architecture testbench of ARITHMETIC_UNIT_tb is
-- Component declaration
component ARITHMETIC_UNIT
port (
IP_0, IP_1 : in std_logic_vector(7 downto 0);
C_IN : in std_logic;
S_0, S_1 : in std_logic;
OP : out std_logic_vector(7 downto 0);
C_OUT : out std_logic
);
end component;
-- Signals for test bench
signal IP_0, IP_1 : std_logic_vector(7 downto 0) := "00000000";
signal C_IN : std_logic;
signal S_0, S_1 : std_logic;
signal OP : std_logic_vector(7 downto 0);
signal C_OUT : std_logic;
begin
-- Instantiate the design under test
uut : ARITHMETIC_UNIT
port map(
IP_0 => IP_0,
IP_1 => IP_1,
C_IN => C_IN,
S_0 => S_0,
S_1 => S_1,
OP => OP,
C_OUT => C_OUT
);
-- Stimulus process
counter_process : process
begin
wait for 10 ns;
-- D
IP_0 <= "00101101";
-- 6
IP_1 <= "10010110";
-- OP D
C_IN <= '0';
S_0 <= '0';
S_1 <= '0';
wait for 10 ns;
-- OP E
C_IN <= '1';
S_0 <= '0';
S_1 <= '0';
wait for 10 ns;
-- OP 3
C_IN <= '0';
S_0 <= '1';
S_1 <= '0';
wait for 10 ns;
-- OP 4
C_IN <= '1';
S_0 <= '1';
S_1 <= '0';
wait for 10 ns;
-- OP 6
C_IN <= '0';
S_0 <= '0';
S_1 <= '1';
wait for 10 ns;
-- OP 7
C_IN <= '1';
S_0 <= '0';
S_1 <= '1';
wait for 10 ns;
-- OP C
C_IN <= '0';
S_0 <= '1';
S_1 <= '1';
wait for 10 ns;
-- OP D
C_IN <= '1';
S_0 <= '1';
S_1 <= '1';
wait for 10 ns;
stop(0);
end process;
end architecture;