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_12_ch_12_01.vhd,v 1.2 2001-10-24 23:31:00 paw Exp $
|
23
|
-- $Revision: 1.2 $
|
24
|
--
|
25
|
-- ---------------------------------------------------------------------
|
26
|
|
27
|
-- code from book
|
28
|
|
29
|
entity and2 is
|
30
|
generic ( Tpd : time );
|
31
|
port ( a, b : in bit; y : out bit );
|
32
|
end entity and2;
|
33
|
|
34
|
architecture simple of and2 is
|
35
|
begin
|
36
|
|
37
|
and2_function :
|
38
|
y <= a and b after Tpd;
|
39
|
|
40
|
end architecture simple;
|
41
|
|
42
|
-- end code from book
|
43
|
|
44
|
entity ch_12_01 is
|
45
|
|
46
|
end entity ch_12_01;
|
47
|
|
48
|
library stimulus;
|
49
|
use stimulus.stimulus_generators.all;
|
50
|
|
51
|
architecture test of ch_12_01 is
|
52
|
|
53
|
signal a1, b1, sig1, sig2, sig_out : bit;
|
54
|
signal test_vector : bit_vector(1 to 3);
|
55
|
|
56
|
begin
|
57
|
|
58
|
-- code from book
|
59
|
|
60
|
gate1 : entity work.and2(simple)
|
61
|
generic map ( Tpd => 2 ns )
|
62
|
port map ( a => sig1, b => sig2, y => sig_out );
|
63
|
|
64
|
gate2 : entity work.and2(simple)
|
65
|
generic map ( Tpd => 3 ns )
|
66
|
port map ( a => a1, b => b1, y => sig1 );
|
67
|
|
68
|
-- end code from book
|
69
|
|
70
|
stimulus : all_possible_values ( bv => test_vector,
|
71
|
delay_between_values => 10 ns );
|
72
|
|
73
|
(sig2, a1, b1) <= test_vector;
|
74
|
|
75
|
end architecture test;
|