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_21_fg_21_02.vhd,v 1.2 2001-10-26 16:29:37 paw Exp $
|
23
|
-- $Revision: 1.2 $
|
24
|
--
|
25
|
-- ---------------------------------------------------------------------
|
26
|
|
27
|
library ieee; use ieee.std_logic_1164.all;
|
28
|
|
29
|
package project_util is
|
30
|
|
31
|
-- code from book (in text)
|
32
|
|
33
|
function "<" ( bv1, bv2 : bit_vector ) return boolean;
|
34
|
|
35
|
subtype word is std_logic_vector(31 downto 0);
|
36
|
|
37
|
-- end code from book
|
38
|
|
39
|
end package project_util;
|
40
|
|
41
|
|
42
|
package body project_util is
|
43
|
|
44
|
function "<" ( bv1, bv2 : bit_vector ) return boolean is
|
45
|
variable tmp1 : bit_vector(bv1'range) := bv1;
|
46
|
variable tmp2 : bit_vector(bv2'range) := bv2;
|
47
|
begin
|
48
|
assert bv1'length = bv2'length
|
49
|
report "vectors are of different length in ""<"" comparison"
|
50
|
severity failure;
|
51
|
tmp1(tmp1'left) := not tmp1(tmp1'left);
|
52
|
tmp2(tmp2'left) := not tmp2(tmp2'left);
|
53
|
return std.standard."<" ( tmp1, tmp2 );
|
54
|
end function "<";
|
55
|
|
56
|
end package body project_util;
|
57
|
|
58
|
|
59
|
|
60
|
-- code from book
|
61
|
|
62
|
library ieee; use ieee.std_logic_1164.all;
|
63
|
use work.project_util.all;
|
64
|
|
65
|
entity limit_checker is
|
66
|
port ( input, lower_bound, upper_bound : in word;
|
67
|
out_of_bounds : out std_logic );
|
68
|
end entity limit_checker;
|
69
|
|
70
|
--------------------------------------------------
|
71
|
|
72
|
architecture behavioral of limit_checker is
|
73
|
|
74
|
subtype bv_word is bit_vector(31 downto 0);
|
75
|
|
76
|
function word_to_bitvector ( w : in word ) return bv_word is
|
77
|
begin
|
78
|
return To_bitvector ( w, xmap => '0' );
|
79
|
end function word_to_bitvector;
|
80
|
|
81
|
begin
|
82
|
|
83
|
algorithm : process (input, lower_bound, upper_bound) is
|
84
|
begin
|
85
|
if "<" ( bv1 => word_to_bitvector(input),
|
86
|
bv2 => word_to_bitvector(lower_bound) )
|
87
|
or "<" ( bv1 => word_to_bitvector(upper_bound),
|
88
|
bv2 => word_to_bitvector(input) ) then
|
89
|
out_of_bounds <= '1';
|
90
|
else
|
91
|
out_of_bounds <= '0';
|
92
|
end if;
|
93
|
end process algorithm;
|
94
|
|
95
|
end architecture behavioral;
|
96
|
|
97
|
-- end code from book
|
98
|
|
99
|
|
100
|
library ieee; use ieee.std_logic_1164.all;
|
101
|
use work.project_util.all;
|
102
|
|
103
|
entity fg_21_02 is
|
104
|
end entity fg_21_02;
|
105
|
|
106
|
|
107
|
architecture test of fg_21_02 is
|
108
|
|
109
|
signal input : word;
|
110
|
signal out_of_bounds : std_logic;
|
111
|
|
112
|
begin
|
113
|
|
114
|
dut : entity work.limit_checker(behavioral)
|
115
|
port map ( input => input,
|
116
|
lower_bound => X"FFFFFFF0", upper_bound => X"00000010",
|
117
|
out_of_bounds => out_of_bounds );
|
118
|
|
119
|
stimulus : input <= X"00000000",
|
120
|
X"00000008" after 10 ns,
|
121
|
X"00000010" after 20 ns,
|
122
|
X"00000018" after 30 ns,
|
123
|
X"FFFFFFF8" after 40 ns,
|
124
|
X"FFFFFFF0" after 50 ns,
|
125
|
X"FFFFFF00" after 60 ns;
|
126
|
|
127
|
end architecture test;
|