-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTB.vhd
executable file
·379 lines (309 loc) · 7.04 KB
/
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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
USE ieee.std_logic_unsigned.all;
USE ieee.std_logic_textio.all;
USE ieee.numeric_std.ALL;
use std.textio.all;
ENTITY TB_vhd IS
END TB_vhd;
ARCHITECTURE behavior OF TB_vhd IS
-- Component Declaration for the Unit Under Test (UUT)
COMPONENT dtmfdetector
PORT(
clk: in std_logic;
enable: in std_logic;
reset: in std_logic;
sample: in integer;
output: out std_logic_vector(3 downto 0);
done: out std_logic
);
END COMPONENT;
--Inputs
SIGNAL clk : std_logic := '0';
signal enable: std_logic := '0';
signal reset: std_logic := '0';
SIGNAL sample : integer := 0;
--Outputs
SIGNAL output : std_logic_vector(3 downto 0);
SIGNAL done : std_logic;
file sample_0 : text open read_mode is "1.txt";
file sample_1 : text open read_mode is "5.txt";
file sample_2 : text open read_mode is "9.txt";
file sample_3 : text open read_mode is "d.txt";
file sample_4 : text open read_mode is "4.txt";
file sample_5 : text open read_mode is "8.txt";
file sample_6 : text open read_mode is "f.txt";
file sample_7 : text open read_mode is "7.txt";
file sample_8 : text open read_mode is "0.txt";
file sample_9 : text open read_mode is "e.txt";
file sample_a : text open read_mode is "a.txt";
file sample_b : text open read_mode is "3.txt";
file sample_c : text open read_mode is "b.txt";
file sample_d : text open read_mode is "2.txt";
file sample_e : text open read_mode is "6.txt";
file sample_f : text open read_mode is "c.txt";
-- clock period
signal period: time := 20 ns;
BEGIN
-- Instantiate the Unit Under Test (UUT)
uut: dtmfdetector PORT MAP(
clk => clk,
enable => enable,
reset => reset,
sample => sample,
output => output,
done => done
);
tb : PROCESS
variable ll : line;
variable sample_in: integer;
BEGIN
reset <= '1';
enable <= '1';
while not endfile(sample_0) loop
readline(sample_0,ll);
read(ll,sample_in);
sample <= sample_in;
if done = '1' then
exit;
end if;
wait for period;
end loop;
enable <= '0';
wait for 2 us;
reset <= '0';
wait for period;
reset <= '1';
enable <= '1';
while not endfile(sample_1) loop
readline(sample_1,ll);
read(ll,sample_in);
sample <= sample_in;
if done = '1' then
exit;
end if;
wait for period;
end loop;
enable <= '0';
wait for 2 us;
reset <= '0';
wait for period;
reset <= '1';
enable <= '1';
while not endfile(sample_2) loop
readline(sample_2,ll);
read(ll,sample_in);
sample <= sample_in;
if done = '1' then
exit;
end if;
wait for period;
end loop;
enable <= '0';
wait for 2 us;
reset <= '0';
wait for period;
reset <= '1';
enable <= '1';
while not endfile(sample_3) loop
readline(sample_3,ll);
read(ll,sample_in);
sample <= sample_in;
if done = '1' then
exit;
end if;
wait for period;
end loop;
enable <= '0';
wait for 2 us;
reset <= '0';
wait for period;
reset <= '1';
enable <= '1';
while not endfile(sample_4) loop
readline(sample_4,ll);
read(ll,sample_in);
sample <= sample_in;
if done = '1' then
exit;
end if;
wait for period;
end loop;
enable <= '0';
wait for 2 us;
reset <= '0';
wait for period;
reset <= '1';
enable <= '1';
while not endfile(sample_5) loop
readline(sample_5,ll);
read(ll,sample_in);
sample <= sample_in;
if done = '1' then
exit;
end if;
wait for period;
end loop;
enable <= '0';
wait for 2 us;
reset <= '0';
wait for period;
reset <= '1';
enable <= '1';
while not endfile(sample_6) loop
readline(sample_6,ll);
read(ll,sample_in);
sample <= sample_in;
if done = '1' then
exit;
end if;
wait for period;
end loop;
enable <= '0';
wait for 2 us;
reset <= '0';
wait for period;
reset <= '1';
enable <= '1';
while not endfile(sample_7) loop
readline(sample_7,ll);
read(ll,sample_in);
sample <= sample_in;
if done = '1' then
exit;
end if;
wait for period;
end loop;
enable <= '0';
wait for 2 us;
reset <= '0';
wait for period;
reset <= '1';
enable <= '1';
while not endfile(sample_8) loop
readline(sample_8,ll);
read(ll,sample_in);
sample <= sample_in;
if done = '1' then
exit;
end if;
wait for period;
end loop;
enable <= '0';
wait for 2 us;
reset <= '0';
wait for period;
reset <= '1';
enable <= '1';
while not endfile(sample_9) loop
readline(sample_9,ll);
read(ll,sample_in);
sample <= sample_in;
if done = '1' then
exit;
end if;
wait for period;
end loop;
enable <= '0';
wait for 2 us;
reset <= '0';
wait for period;
reset <= '1';
enable <= '1';
while not endfile(sample_a) loop
readline(sample_a,ll);
read(ll,sample_in);
sample <= sample_in;
if done = '1' then
exit;
end if;
wait for period;
end loop;
enable <= '0';
wait for 2 us;
reset <= '0';
wait for period;
reset <= '1';
enable <= '1';
while not endfile(sample_b) loop
readline(sample_b,ll);
read(ll,sample_in);
sample <= sample_in;
if done = '1' then
exit;
end if;
wait for period;
end loop;
enable <= '0';
wait for 2 us;
reset <= '0';
wait for period;
reset <= '1';
enable <= '1';
while not endfile(sample_c) loop
readline(sample_c,ll);
read(ll,sample_in);
sample <= sample_in;
if done = '1' then
exit;
end if;
wait for period;
end loop;
enable <= '0';
wait for 2 us;
reset <= '0';
wait for period;
reset <= '1';
enable <= '1';
while not endfile(sample_d) loop
readline(sample_d,ll);
read(ll,sample_in);
sample <= sample_in;
if done = '1' then
exit;
end if;
wait for period;
end loop;
enable <= '0';
wait for 2 us;
reset <= '0';
wait for period;
reset <= '1';
enable <= '1';
while not endfile(sample_e) loop
readline(sample_e,ll);
read(ll,sample_in);
sample <= sample_in;
if done = '1' then
exit;
end if;
wait for period;
end loop;
enable <= '0';
wait for 2 us;
reset <= '0';
wait for period;
reset <= '1';
enable <= '1';
while not endfile(sample_f) loop
readline(sample_f,ll);
read(ll,sample_in);
sample <= sample_in;
if done = '1' then
exit;
end if;
wait for period;
end loop;
enable <= '0';
wait for 2 us;
reset <= '0';
wait for period;
wait; -- will wait forever
END PROCESS;
-- clock generator
process
begin
clk <= not clk;
wait for period/2;
end process;
END behavior;