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_07_fg_07_11.vhd,v 1.2 2001-10-26 16:29:34 paw Exp $
|
23
|
-- $Revision: 1.2 $
|
24
|
--
|
25
|
-- ---------------------------------------------------------------------
|
26
|
|
27
|
entity fg_07_11 is
|
28
|
end entity fg_07_11;
|
29
|
|
30
|
|
31
|
|
32
|
architecture test of fg_07_11 is
|
33
|
|
34
|
subtype word32 is bit_vector(31 downto 0);
|
35
|
|
36
|
-- code from book
|
37
|
|
38
|
procedure increment ( a : inout word32; by : in word32 := X"0000_0001" ) is
|
39
|
variable sum : word32;
|
40
|
variable carry : bit := '0';
|
41
|
begin
|
42
|
for index in a'reverse_range loop
|
43
|
sum(index) := a(index) xor by(index) xor carry;
|
44
|
carry := ( a(index) and by(index) ) or ( carry and ( a(index) xor by(index) ) );
|
45
|
end loop;
|
46
|
a := sum;
|
47
|
end procedure increment;
|
48
|
|
49
|
-- end code from book
|
50
|
|
51
|
begin
|
52
|
|
53
|
stimulus : process is
|
54
|
|
55
|
variable count : word32 := X"0001_1100";
|
56
|
|
57
|
begin
|
58
|
|
59
|
-- code from book (in text)
|
60
|
|
61
|
increment(count, X"0000_0004");
|
62
|
|
63
|
increment(count);
|
64
|
|
65
|
increment(count, by => open);
|
66
|
|
67
|
-- end code from book
|
68
|
|
69
|
wait;
|
70
|
end process stimulus;
|
71
|
|
72
|
end architecture test;
|