1
|
|
2
|
-- Copyright (C) 1996 Morgan Kaufmann Publishers, Inc
|
3
|
|
4
|
-- This file is part of VESTs (Vhdl tESTs).
|
5
|
|
6
|
-- VESTs is free software; you can redistribute it and/or modify it
|
7
|
-- under the terms of the GNU General Public License as published by the
|
8
|
-- Free Software Foundation; either version 2 of the License, or (at
|
9
|
-- your option) any later version.
|
10
|
|
11
|
-- VESTs is distributed in the hope that it will be useful, but WITHOUT
|
12
|
-- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
13
|
-- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
14
|
-- for more details.
|
15
|
|
16
|
-- You should have received a copy of the GNU General Public License
|
17
|
-- along with VESTs; if not, write to the Free Software Foundation,
|
18
|
-- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
|
|
20
|
-- ---------------------------------------------------------------------
|
21
|
--
|
22
|
-- $Id: ch_05_ch_05_21.vhd,v 1.3 2001-10-26 16:29:34 paw Exp $
|
23
|
-- $Revision: 1.3 $
|
24
|
--
|
25
|
-- ---------------------------------------------------------------------
|
26
|
|
27
|
-- code from book:
|
28
|
|
29
|
entity and_gate is
|
30
|
port ( i : in bit_vector; y : out bit );
|
31
|
end entity and_gate;
|
32
|
|
33
|
-- end of code from book
|
34
|
|
35
|
architecture behavioral of and_gate is
|
36
|
begin
|
37
|
|
38
|
reducer : process (i) is
|
39
|
constant Tpd : delay_length := 2 ns;
|
40
|
variable result : bit;
|
41
|
begin
|
42
|
result := '1';
|
43
|
for index in i'range loop
|
44
|
result := result and i(index);
|
45
|
end loop;
|
46
|
y <= result after Tpd;
|
47
|
end process reducer;
|
48
|
|
49
|
end architecture behavioral;
|
50
|
|
51
|
entity ch_05_21 is
|
52
|
|
53
|
end entity ch_05_21;
|
54
|
|
55
|
library stimulus;
|
56
|
|
57
|
architecture test of ch_05_21 is
|
58
|
|
59
|
-- code from book:
|
60
|
|
61
|
signal serial_select, write_en, bus_clk, serial_wr : bit;
|
62
|
|
63
|
-- end of code from book
|
64
|
|
65
|
use stimulus.stimulus_generators.all;
|
66
|
|
67
|
signal test_input : bit_vector(2 downto 0);
|
68
|
|
69
|
begin
|
70
|
|
71
|
-- code from book:
|
72
|
|
73
|
serial_write_gate : entity work.and_gate
|
74
|
port map ( i(1) => serial_select,
|
75
|
i(2) => write_en,
|
76
|
i(3) => bus_clk,
|
77
|
y => serial_wr );
|
78
|
|
79
|
-- end of code from book
|
80
|
|
81
|
stimulus_proc : all_possible_values( bv => test_input,
|
82
|
delay_between_values => 10 ns );
|
83
|
|
84
|
(serial_select, write_en, bus_clk) <= test_input;
|
85
|
|
86
|
end architecture test;
|