-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharithmetic_unit_tb.vhd
More file actions
executable file
·137 lines (105 loc) · 2.61 KB
/
arithmetic_unit_tb.vhd
File metadata and controls
executable file
·137 lines (105 loc) · 2.61 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
--------------------------------------------------------------------------------
--
--------------------------------------------------------------------------------
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
ENTITY arithmetic_unit_tb IS
END arithmetic_unit_tb;
ARCHITECTURE behavior OF arithmetic_unit_tb IS
-- Component Declaration for the Unit Under Test (UUT)
COMPONENT arithmeticUnit
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;
cin : IN std_logic;
nf : OUT std_logic;
zf : OUT std_logic;
ovf : OUT std_logic;
cout : OUT 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';
signal cin : std_logic := '0';
--Outputs
signal nf : std_logic;
signal zf : std_logic;
signal ovf : std_logic;
signal cout : std_logic;
signal G : std_logic_vector(15 downto 0);
-- No clocks detected in port list. Replace <clock> below with
-- appropriate port name
BEGIN
-- Instantiate the Unit Under Test (UUT)
uut: arithmeticUnit PORT MAP (
Ain => Ain,
Bin => Bin,
s0 => s0,
s1 => s1,
cin => cin,
nf => nf,
zf => zf,
ovf => ovf,
cout => cout,
G => G
);
-- Stimulus process
stim_proc: process
begin
--transfer A
Ain<="0000000000000000";
Bin<="0000000000000001";
cin<='0';
s0<='0';
s1<='0';
wait for 100 ns;
--increment by 1
Ain<="0000000000000001";
Bin<="0000000000000000";
cin<='1';
s0<='0';
s1<='0';
--A+B
wait for 100ns;
Ain<="0000000000000001";
Bin<="0000000000000011";
cin<='0';
s0<='1';
s1<='0';
--A+B+1
wait for 100ns;
Ain<="0000000000000001";
Bin<="0000000000000011";
cin<='1';
s0<='1';
s1<='0';
--decrement by 1
wait for 100ns;
Ain<="0000000000000011";
Bin<="0000000000000001";
cin<='0';
s0<='1';
s1<='1';
--A-B
wait for 100ns;
Ain<="0000000000000111";
Bin<="0000000000000001";
cin<='1';
s0<='0';
s1<='1';
--A + COMPLEMENT OF B
wait for 100ns;
cin<='0';
Ain<="0000000000000000";
Bin<="0000000000000001";
s0<='0';
s1<='1';
wait;
end process;
END;