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_13_fg_13_06.vhd,v 1.2 2001-10-26 16:29:35 paw Exp $
|
23
|
-- $Revision: 1.2 $
|
24
|
--
|
25
|
-- ---------------------------------------------------------------------
|
26
|
|
27
|
package counter_types is
|
28
|
|
29
|
-- code from book (in text)
|
30
|
|
31
|
subtype digit is bit_vector(3 downto 0);
|
32
|
|
33
|
-- end code from book
|
34
|
|
35
|
end package counter_types;
|
36
|
|
37
|
|
38
|
|
39
|
use work.counter_types.digit;
|
40
|
|
41
|
entity add_1 is
|
42
|
port ( d : in digit; y : out digit );
|
43
|
end entity add_1;
|
44
|
|
45
|
|
46
|
architecture boolean_eqn of add_1 is
|
47
|
begin
|
48
|
|
49
|
y(0) <= not d(0) after 4 ns;
|
50
|
|
51
|
y(1) <= (not d(1) and d(0))
|
52
|
or (d(1) and not d(0)) after 4 ns;
|
53
|
|
54
|
y(2) <= (not d(2) and d(1) and d(0))
|
55
|
or (d(2) and not (d(1) and d(0))) after 4 ns;
|
56
|
|
57
|
y(3) <= (not d(3) and d(2) and d(1) and d(0))
|
58
|
or (d(3) and not (d(2) and d(1) and d(0))) after 4 ns;
|
59
|
|
60
|
end architecture boolean_eqn;
|
61
|
|
62
|
|
63
|
use work.counter_types.digit;
|
64
|
|
65
|
entity buf4 is
|
66
|
port ( a : in digit; y : out digit );
|
67
|
end entity buf4;
|
68
|
|
69
|
|
70
|
architecture basic of buf4 is
|
71
|
begin
|
72
|
|
73
|
y(0) <= a(0) after 2 ns;
|
74
|
y(1) <= a(1) after 2 ns;
|
75
|
y(2) <= a(2) after 2 ns;
|
76
|
y(3) <= a(3) after 2 ns;
|
77
|
|
78
|
end architecture basic;
|
79
|
|
80
|
|
81
|
|
82
|
|
83
|
-- code from book
|
84
|
|
85
|
use work.counter_types.digit;
|
86
|
|
87
|
entity counter is
|
88
|
port ( clk, clr : in bit;
|
89
|
q0, q1 : out digit );
|
90
|
end entity counter;
|
91
|
|
92
|
--------------------------------------------------
|
93
|
|
94
|
architecture registered of counter is
|
95
|
|
96
|
component digit_register is
|
97
|
port ( clk, clr : in bit;
|
98
|
d : in digit;
|
99
|
q : out digit );
|
100
|
end component digit_register;
|
101
|
|
102
|
signal current_val0, current_val1, next_val0, next_val1 : digit;
|
103
|
|
104
|
begin
|
105
|
|
106
|
val0_reg : component digit_register
|
107
|
port map ( clk => clk, clr => clr, d => next_val0,
|
108
|
q => current_val0 );
|
109
|
|
110
|
val1_reg : component digit_register
|
111
|
port map ( clk => clk, clr => clr, d => next_val1,
|
112
|
q => current_val1 );
|
113
|
|
114
|
-- other component instances
|
115
|
-- . . .
|
116
|
|
117
|
-- not in book
|
118
|
|
119
|
incr0 : entity work.add_1(boolean_eqn)
|
120
|
port map ( d => current_val0, y => next_val0 );
|
121
|
|
122
|
incr1 : entity work.add_1(boolean_eqn)
|
123
|
port map ( d => current_val1, y => next_val1 );
|
124
|
|
125
|
buf0 : entity work.buf4(basic)
|
126
|
port map ( a => current_val0, y => q0 );
|
127
|
|
128
|
buf1 : entity work.buf4(basic)
|
129
|
port map ( a => current_val1, y => q1 );
|
130
|
|
131
|
-- end not in book
|
132
|
|
133
|
end architecture registered;
|
134
|
|
135
|
-- end code from book
|