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_06.vhd,v 1.2 2001-10-26 16:29:35 paw Exp $
|
23
|
-- $Revision: 1.2 $
|
24
|
--
|
25
|
-- ---------------------------------------------------------------------
|
26
|
|
27
|
use work.words.all;
|
28
|
|
29
|
entity cpu is
|
30
|
port ( address : out uword; data : inout uword; -- . . . );
|
31
|
-- not in book
|
32
|
other_port : in X01Z := 'Z' );
|
33
|
-- end not in book
|
34
|
end entity cpu;
|
35
|
|
36
|
|
37
|
-- not in book
|
38
|
|
39
|
architecture behavioral of cpu is
|
40
|
begin
|
41
|
end architecture behavioral;
|
42
|
|
43
|
-- end not in book
|
44
|
|
45
|
|
46
|
--------------------------------------------------
|
47
|
|
48
|
use work.words.all;
|
49
|
|
50
|
entity memory is
|
51
|
port ( address : in uword; data : inout uword; -- . . . );
|
52
|
-- not in book
|
53
|
other_port : in X01Z := 'Z' );
|
54
|
-- end not in book
|
55
|
end entity memory;
|
56
|
|
57
|
|
58
|
-- not in book
|
59
|
|
60
|
architecture behavioral of memory is
|
61
|
begin
|
62
|
end architecture behavioral;
|
63
|
|
64
|
-- end not in book
|
65
|
|
66
|
|
67
|
--------------------------------------------------
|
68
|
|
69
|
|
70
|
-- not in book
|
71
|
|
72
|
use work.words.all;
|
73
|
|
74
|
entity ROM is
|
75
|
port ( a : in uword; d : out ubyte; other_port : in X01Z := 'Z' );
|
76
|
end entity ROM;
|
77
|
|
78
|
|
79
|
architecture behavioral of ROM is
|
80
|
begin
|
81
|
end architecture behavioral;
|
82
|
|
83
|
|
84
|
entity computer_system is
|
85
|
end entity computer_system;
|
86
|
|
87
|
-- end not in book
|
88
|
|
89
|
|
90
|
|
91
|
architecture top_level of computer_system is
|
92
|
|
93
|
use work.words.all;
|
94
|
|
95
|
signal address : uword;
|
96
|
signal data : word;
|
97
|
-- . . .
|
98
|
|
99
|
begin
|
100
|
|
101
|
the_cpu : entity work.cpu(behavioral)
|
102
|
port map ( address, data, -- . . . );
|
103
|
-- not in book
|
104
|
open );
|
105
|
-- end not in book
|
106
|
|
107
|
the_memory : entity work.memory(behavioral)
|
108
|
port map ( address, data, -- . . . );
|
109
|
-- not in book
|
110
|
open );
|
111
|
-- end not in book
|
112
|
|
113
|
-- . . .
|
114
|
|
115
|
-- code from book (in text)
|
116
|
|
117
|
-- boot_rom : entity work.ROM(behavioral)
|
118
|
-- port map ( a => address, d => data(24 to 31), -- . . . ); -- illegal
|
119
|
-- -- not in book
|
120
|
-- other_port => open );
|
121
|
-- -- end not in book
|
122
|
|
123
|
-- end code from book
|
124
|
|
125
|
end architecture top_level;
|