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_07.vhd,v 1.2 2001-10-26 16:29:34 paw Exp $
|
23
|
-- $Revision: 1.2 $
|
24
|
--
|
25
|
-- ---------------------------------------------------------------------
|
26
|
|
27
|
entity fg_07_07 is
|
28
|
end entity fg_07_07;
|
29
|
|
30
|
|
31
|
architecture test of fg_07_07 is
|
32
|
|
33
|
subtype word32 is bit_vector(31 downto 0);
|
34
|
|
35
|
-- code in book
|
36
|
|
37
|
procedure addu ( a, b : in word32;
|
38
|
result : out word32; overflow : out boolean ) is
|
39
|
variable sum : word32;
|
40
|
variable carry : bit := '0';
|
41
|
begin
|
42
|
for index in sum'reverse_range loop
|
43
|
sum(index) := a(index) xor b(index) xor carry;
|
44
|
carry := ( a(index) and b(index) ) or ( carry and ( a(index) xor b(index) ) );
|
45
|
end loop;
|
46
|
result := sum;
|
47
|
overflow := carry = '1';
|
48
|
end procedure addu;
|
49
|
|
50
|
-- end code in book
|
51
|
|
52
|
begin
|
53
|
|
54
|
stimulus : process is
|
55
|
|
56
|
-- code in book (in text)
|
57
|
|
58
|
variable PC, next_PC : word32;
|
59
|
variable overflow_flag : boolean;
|
60
|
-- . . .
|
61
|
|
62
|
-- end code in book
|
63
|
|
64
|
begin
|
65
|
PC := X"0000_0010";
|
66
|
|
67
|
-- code in book (in text)
|
68
|
|
69
|
addu ( PC, X"0000_0004", next_PC, overflow_flag);
|
70
|
|
71
|
-- end code in book
|
72
|
|
73
|
PC := X"FFFF_FFFC";
|
74
|
addu ( PC, X"0000_0004", next_PC, overflow_flag);
|
75
|
|
76
|
wait;
|
77
|
end process stimulus;
|
78
|
|
79
|
end architecture test;
|