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_14_fg_14_04.vhd,v 1.2 2001-10-26 16:29:35 paw Exp $
|
23 |
|
|
-- $Revision: 1.2 $
|
24 |
|
|
--
|
25 |
|
|
-- ---------------------------------------------------------------------
|
26 |
|
|
|
27 |
|
|
-- not in book
|
28 |
|
|
|
29 |
|
|
library ieee; use ieee.std_logic_1164.all;
|
30 |
|
|
|
31 |
|
|
entity DRAM is
|
32 |
|
|
port ( a : in std_logic_vector(0 to 10);
|
33 |
|
|
d : inout std_logic_vector(0 to 3);
|
34 |
|
|
cs, we, ras, cas : in std_logic );
|
35 |
|
|
end entity DRAM;
|
36 |
|
|
|
37 |
|
|
|
38 |
|
|
architecture empty of DRAM is
|
39 |
|
|
begin
|
40 |
|
|
d <= (others => 'Z');
|
41 |
|
|
end architecture empty;
|
42 |
|
|
|
43 |
|
|
|
44 |
|
|
|
45 |
|
|
library ieee; use ieee.std_logic_1164.all;
|
46 |
|
|
|
47 |
|
|
entity memory_board is
|
48 |
|
|
end entity memory_board;
|
49 |
|
|
|
50 |
|
|
-- end not in book
|
51 |
|
|
|
52 |
|
|
|
53 |
|
|
architecture chip_level of memory_board is
|
54 |
|
|
|
55 |
|
|
component DRAM is
|
56 |
|
|
port ( a : in std_logic_vector(0 to 10);
|
57 |
|
|
d : inout std_logic_vector(0 to 3);
|
58 |
|
|
cs, we, ras, cas : in std_logic );
|
59 |
|
|
end component DRAM;
|
60 |
|
|
|
61 |
|
|
signal buffered_address : std_logic_vector(0 to 10);
|
62 |
|
|
signal DRAM_data : std_logic_vector(0 to 31);
|
63 |
|
|
signal bank_select : std_logic_vector(0 to 3);
|
64 |
|
|
signal buffered_we, buffered_ras, buffered_cas : std_logic;
|
65 |
|
|
|
66 |
|
|
-- . . . -- other declarations
|
67 |
|
|
|
68 |
|
|
begin
|
69 |
|
|
|
70 |
|
|
bank_array : for bank_index in 0 to 3 generate
|
71 |
|
|
begin
|
72 |
|
|
|
73 |
|
|
nibble_array : for nibble_index in 0 to 7 generate
|
74 |
|
|
|
75 |
|
|
constant data_lo : natural := nibble_index * 4;
|
76 |
|
|
constant data_hi : natural := nibble_index * 4 + 3;
|
77 |
|
|
|
78 |
|
|
begin
|
79 |
|
|
|
80 |
|
|
a_DRAM : component DRAM
|
81 |
|
|
port map ( a => buffered_address,
|
82 |
|
|
d => DRAM_data(data_lo to data_hi),
|
83 |
|
|
cs => bank_select(bank_index),
|
84 |
|
|
we => buffered_we,
|
85 |
|
|
ras => buffered_ras,
|
86 |
|
|
cas => buffered_cas );
|
87 |
|
|
|
88 |
|
|
end generate nibble_array;
|
89 |
|
|
|
90 |
|
|
end generate bank_array;
|
91 |
|
|
|
92 |
|
|
-- . . . -- other component instances, etc
|
93 |
|
|
|
94 |
|
|
-- not in book
|
95 |
|
|
|
96 |
|
|
buffered_address <= "01010101010";
|
97 |
|
|
DRAM_data <= X"01234567";
|
98 |
|
|
|
99 |
|
|
-- end not in book
|
100 |
|
|
|
101 |
|
|
end architecture chip_level;
|