1 |
d93979b7
|
Arnaud Dieumegard
|
|
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_17.vhd,v 1.2 2001-10-26 16:29:34 paw Exp $
|
23 |
|
|
-- $Revision: 1.2 $
|
24 |
|
|
--
|
25 |
|
|
-- ---------------------------------------------------------------------
|
26 |
|
|
|
27 |
|
|
entity fg_07_17 is
|
28 |
|
|
end entity fg_07_17;
|
29 |
|
|
|
30 |
|
|
|
31 |
|
|
|
32 |
|
|
architecture test of fg_07_17 is
|
33 |
|
|
|
34 |
|
|
-- code from book
|
35 |
|
|
|
36 |
|
|
function bv_to_natural ( bv : in bit_vector ) return natural is
|
37 |
|
|
variable result : natural := 0;
|
38 |
|
|
begin
|
39 |
|
|
for index in bv'range loop
|
40 |
|
|
result := result * 2 + bit'pos(bv(index));
|
41 |
|
|
end loop;
|
42 |
|
|
return result;
|
43 |
|
|
end function bv_to_natural;
|
44 |
|
|
|
45 |
|
|
-- end code from book
|
46 |
|
|
|
47 |
|
|
signal data : bit_vector(0 to 7);
|
48 |
|
|
constant address : bit_vector(0 to 3) := "0101";
|
49 |
|
|
constant Taccess : delay_length := 80 ns;
|
50 |
|
|
|
51 |
|
|
begin
|
52 |
|
|
|
53 |
|
|
tester : process is
|
54 |
|
|
|
55 |
|
|
constant rom_size : natural := 8;
|
56 |
|
|
constant word_size : natural := 8;
|
57 |
|
|
|
58 |
|
|
-- code from book (in text)
|
59 |
|
|
|
60 |
|
|
type rom_array is array (natural range 0 to rom_size-1)
|
61 |
|
|
of bit_vector(0 to word_size-1);
|
62 |
|
|
variable rom_data : rom_array;
|
63 |
|
|
|
64 |
|
|
-- end code from book
|
65 |
|
|
|
66 |
|
|
begin
|
67 |
|
|
|
68 |
|
|
rom_data := (X"00", X"01", X"02", X"03", X"04", X"05", X"06", X"07");
|
69 |
|
|
|
70 |
|
|
-- code from book (in text)
|
71 |
|
|
|
72 |
|
|
data <= rom_data ( bv_to_natural(address) ) after Taccess;
|
73 |
|
|
|
74 |
|
|
-- end code from book
|
75 |
|
|
|
76 |
|
|
wait;
|
77 |
|
|
end process tester;
|
78 |
|
|
|
79 |
|
|
end architecture test;
|