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_11_fg_11_07.vhd,v 1.2 2001-10-26 16:29:35 paw Exp $
|
23
|
-- $Revision: 1.2 $
|
24
|
--
|
25
|
-- ---------------------------------------------------------------------
|
26
|
|
27
|
use work.MVL4.all;
|
28
|
|
29
|
entity ROM is
|
30
|
port ( a : in MVL4_ulogic_vector(15 downto 0);
|
31
|
d : inout MVL4_logic_vector(7 downto 0);
|
32
|
rd : in MVL4_ulogic );
|
33
|
end entity ROM;
|
34
|
|
35
|
-- not in book
|
36
|
architecture behavioral of ROM is
|
37
|
begin
|
38
|
end architecture behavioral;
|
39
|
-- end not in book
|
40
|
|
41
|
--------------------------------------------------
|
42
|
|
43
|
use work.MVL4.all;
|
44
|
|
45
|
entity SIMM is
|
46
|
port ( a : in MVL4_ulogic_vector(9 downto 0);
|
47
|
d : inout MVL4_logic_vector(31 downto 0);
|
48
|
ras, cas, we, cs : in MVL4_ulogic );
|
49
|
end entity SIMM;
|
50
|
|
51
|
-- not in book
|
52
|
architecture behavioral of SIMM is
|
53
|
begin
|
54
|
end architecture behavioral;
|
55
|
-- end not in book
|
56
|
|
57
|
--------------------------------------------------
|
58
|
|
59
|
-- not in book
|
60
|
|
61
|
use work.MVL4.all;
|
62
|
|
63
|
entity memory_subsystem is
|
64
|
end entity memory_subsystem;
|
65
|
|
66
|
-- end not in book
|
67
|
|
68
|
architecture detailed of memory_subsystem is
|
69
|
|
70
|
signal internal_data : MVL4_logic_vector(31 downto 0);
|
71
|
-- . . .
|
72
|
|
73
|
-- not in book
|
74
|
signal internal_addr : MVL4_ulogic_vector(31 downto 0);
|
75
|
signal main_mem_addr : MVL4_ulogic_vector(9 downto 0);
|
76
|
signal ROM_select : MVL4_ulogic;
|
77
|
-- end not in book
|
78
|
|
79
|
begin
|
80
|
|
81
|
boot_ROM : entity work.ROM(behavioral)
|
82
|
port map ( a => internal_addr(15 downto 0),
|
83
|
d => internal_data(7 downto 0),
|
84
|
rd => ROM_select );
|
85
|
|
86
|
main_mem : entity work.SIMM(behavioral)
|
87
|
port map ( a => main_mem_addr, d => internal_data, -- . . . );
|
88
|
-- not in book
|
89
|
ras => '0', cas => '0', we => '0', cs => '0' );
|
90
|
-- end not in book
|
91
|
|
92
|
-- . . .
|
93
|
|
94
|
end architecture detailed;
|