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_13.vhd,v 1.2 2001-10-26 16:29:34 paw Exp $
|
23
|
-- $Revision: 1.2 $
|
24
|
--
|
25
|
-- ---------------------------------------------------------------------
|
26
|
|
27
|
entity fg_07_13 is
|
28
|
end entity fg_07_13;
|
29
|
|
30
|
|
31
|
|
32
|
architecture test of fg_07_13 is
|
33
|
|
34
|
-- code from book
|
35
|
|
36
|
procedure bv_lt ( bv1, bv2 : in bit_vector; result : out boolean ) is
|
37
|
variable tmp1 : bit_vector(bv1'range) := bv1;
|
38
|
variable tmp2 : bit_vector(bv2'range) := bv2;
|
39
|
begin
|
40
|
tmp1(tmp1'left) := not tmp1(tmp1'left);
|
41
|
tmp2(tmp2'left) := not tmp2(tmp2'left);
|
42
|
result := tmp1 < tmp2;
|
43
|
end procedure bv_lt;
|
44
|
|
45
|
-- end code from book
|
46
|
|
47
|
begin
|
48
|
|
49
|
stimulus : process is
|
50
|
|
51
|
subtype byte is bit_vector(0 to 7);
|
52
|
variable result : boolean;
|
53
|
|
54
|
begin
|
55
|
bv_lt( byte'(X"02"), byte'(X"04"), result );
|
56
|
assert result;
|
57
|
|
58
|
bv_lt( byte'(X"02"), byte'(X"02"), result );
|
59
|
assert not result;
|
60
|
|
61
|
bv_lt( byte'(X"02"), byte'(X"02"), result );
|
62
|
assert not result;
|
63
|
|
64
|
bv_lt( byte'(X"FC"), byte'(X"04"), result );
|
65
|
assert result;
|
66
|
|
67
|
bv_lt( byte'(X"04"), byte'(X"FC"), result );
|
68
|
assert not result;
|
69
|
|
70
|
bv_lt( byte'(X"FC"), byte'(X"FC"), result );
|
71
|
assert not result;
|
72
|
|
73
|
bv_lt( byte'(X"FC"), byte'(X"FE"), result );
|
74
|
assert result;
|
75
|
|
76
|
bv_lt( byte'(X"FE"), byte'(X"FC"), result );
|
77
|
assert not result;
|
78
|
|
79
|
wait;
|
80
|
end process stimulus;
|
81
|
|
82
|
end architecture test;
|