1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
|
library ieee;
use ieee.std_logic_1164.all;
package cru is
subtype word is std_logic_vector(31 downto 0);
constant clock_time : time := 10 ns;
end package;
library ieee;
use ieee.std_logic_1164.all;
use work.cru.all;
entity reg is
port (
CLK: in std_logic; -- Rising edge -> Read; Falling edge -> Write.
ENABLE: in std_logic; -- If 1 then at falling edge of clock, W will be written.
W: in word; -- The data to write.
R: out word -- The data to read.
);
end entity;
architecture Behavioral of reg is
signal V: word := (others => '0');
begin
process(CLK)
begin
if rising_edge(CLK) then
R <= V;
end if;
if falling_edge(CLK) and ENABLE = '1' then
V <= W;
end if;
end process;
end architecture;
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use ieee.std_logic_unsigned.all;
use work.cru.all;
entity register_file is
port (
CLK: in std_logic;
ENABLE: in std_logic;
R1, R2, W: in std_logic_vector(4 downto 0);
WD: in std_logic_vector(31 downto 0);
RD1, RD2: out std_logic_vector(31 downto 0)
);
end entity;
architecture Behavioral of register_file is
type reg_file_type is array (0 to 31) of std_logic_vector(31 downto 0);
signal reg_file: reg_file_type := (others => (others => '0'));
begin
process (CLK)
begin
if rising_edge(CLK) then
RD1 <= reg_file(to_integer(unsigned(R1)));
RD2 <= reg_file(to_integer(unsigned(R2)));
end if;
if falling_edge(CLK) and ENABLE = '1' then
reg_file(to_integer(unsigned(W))) <= WD;
end if;
end process;
end architecture;
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use ieee.std_logic_unsigned.all;
use work.cru.all;
entity alu is
port (
A, B: in std_logic_vector(31 downto 0);
ALUC: in std_logic_vector(3 downto 0);
S: out std_logic_vector(31 downto 0);
Z: out std_logic
);
end entity;
architecture Behavioral of alu is
begin
S <= A + B when ALUC(2 downto 0) ?= B"000"
else A - B when ALUC(2 downto 0) ?= B"010"
else A and B when ALUC(2 downto 0) ?= B"100"
else A or B when ALUC(2 downto 0) ?= B"101"
else A xor B when ALUC(2 downto 0) ?= B"110"
else std_logic_vector(signed(A) sll 16) and X"FFFF0000" when ALUC(2 downto 0) ?= B"110"
else std_logic_vector(signed(A) sll to_integer(unsigned(B))) when ALUC ?= B"0011"
else std_logic_vector(signed(A) srl to_integer(unsigned(B))) when ALUC ?= B"0111"
else std_logic_vector(signed(A) sra to_integer(unsigned(B))) when ALUC ?= B"1111";
Z <= S ?= X"00000000";
end architecture;
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use ieee.std_logic_unsigned.all;
use work.cru.all;
entity clock is
port(CLK: out std_logic);
end entity;
architecture Behavioral of clock is
signal V: std_logic := '0';
begin
V <= not V after clock_time;
CLK <= V;
end architecture;
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use ieee.std_logic_unsigned.all;
use work.cru.all;
entity ram is
port(CLK: in std_logic;
R: out word;
W: in word;
ADDR: in word;
ENABLE: in std_logic
);
end entity;
architecture Behavioral of ram is
type memory_type is array (0 to 16#30#) of word;
signal memory: memory_type := (
X"3c010000",
X"34240020",
X"20050004",
X"0c000018",
X"ac820000",
X"8c890000",
X"01244022",
X"20050003",
X"20a5ffff",
X"34a8ffff",
X"39085555",
X"2009ffff",
X"312affff",
X"01493025",
X"01494026",
X"01463824",
X"10a00001",
X"08000008",
X"2005ffff",
X"000543c0",
X"00084400",
X"00084403",
X"000843c2",
X"08000017",
X"00004020",
X"8c890000",
X"20840004",
X"01094020",
X"20a5ffff",
X"14a0fffb",
X"00081000",
X"03e00008",
X"000000A3",
X"00000027",
X"00000079",
X"00000115",
others => (others => '0')
);
signal V: std_logic := '0';
begin
b: process(CLK) is
begin
if rising_edge(CLK) then
R <= memory(to_integer(unsigned(ADDR)) / 4);
end if;
if falling_edge(CLK) and ENABLE = '1' then
memory(to_integer(unsigned(ADDR)) / 4) <= W;
end if;
end process;
end architecture;
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use ieee.std_logic_unsigned.all;
use work.cru.all;
entity cpu is
port (
CLK: in std_logic
);
end entity;
architecture Behavioral of cpu is
signal pc: word := X"00000000";
signal pc_to_write: word;
signal ins: word;
signal enable_mem: std_logic;
signal write_mem: std_logic := '0';
signal addr: word := X"00000000";
signal mem_w: word;
signal mem_r: word;
signal WRITE_REG: std_logic := '0';
signal R1: std_logic_vector(4 downto 0) := B"00000";
signal R2: std_logic_vector(4 downto 0) := B"00000";
signal W: std_logic_vector(4 downto 0) := B"00000";
signal WD: std_logic_vector(31 downto 0);
signal RD1: std_logic_vector(31 downto 0) := X"00000000";
signal RD2: std_logic_vector(31 downto 0) := X"00000000";
signal A: std_logic_vector(31 downto 0) := X"00000000";
signal B: std_logic_vector(31 downto 0) := X"00000000";
signal ALUC: std_logic_vector(3 downto 0) := B"0000";
signal S: std_logic_vector(31 downto 0);
signal Z: std_logic;
begin
pc_reg: entity work.reg
port map (
CLK => CLK,
ENABLE => '1',
W => pc_to_write,
R => pc
);
reg: entity work.register_file
port map(
CLK => CLK,
ENABLE => WRITE_REG,
R1 => R1,
R2 => R2,
W => W,
WD => WD,
RD1 => RD1,
RD2 => RD2
);
alu: entity work.alu
port map(
A => A,
B => B,
ALUC => ALUC,
S => S,
Z => Z
);
ram: entity work.ram
port map (
CLK => CLK,
R => mem_r,
W => mem_w,
ADDR => addr,
ENABLE => write_mem
);
logic: process is
begin
wait until rising_edge(CLK);
wait for 100 ps;
addr <= pc;
pc_to_write <= pc + 4;
wait for 1 ns;
ins <= mem_r;
WRITE_REG <= '0';
if ins(31 downto 27) = B"00001" then -- j / jal
if ins(26) = '1' then -- jal
W <= B"11111";
WD <= pc;
WRITE_REG <= '1';
end if;
pc_to_write <= (25 downto 0 => ins(25 downto 0), others => '0');
elsif ins(31 downto 26) = B"000000" then
if ins(5) = '1' then
R1 <= ins(25 downto 21);
R2 <= ins(20 downto 16);
ALUC <= ins(3 downto 0);
wait for 100 ps;
A <= RD1;
B <= RD2;
W <= ins(15 downto 11);
WRITE_REG <= '1';
WD <= S;
elsif ins(3) = '0' then
R1 <= ins(20 downto 16);
ALUC(3 downto 2) <= ins(1 downto 0);
ALUC(1 downto 0) <= B"11";
wait for 100 ps;
A <= RD1;
B <= (4 downto 0 => ins(10 downto 6), others => '0');
W <= ins(15 downto 11);
WRITE_REG <= '1';
WD <= S;
else
R1 <= ins(25 downto 21);
WRITE_REG <= '0';
wait for 100 ps;
pc_to_write <= RD1;
end if;
else
if ins(31) = '1' then
enable_mem <= '1';
R1 <= ins(25 downto 21);
ALUC <= B"0000";
wait for 100 ps;
A <= RD1;
B <= (15 downto 0 => ins(15 downto 0), others => '0' );
if ins(29) = '1' then
W <= ins(20 downto 16);
write_mem <= '0';
else
R2 <= ins(20 downto 16);
write_mem <= '1';
wait for 100 ps;
end if;
elsif ins(29 downto 26) = B"1111" then
WRITE_REG <= '1';
W <= ins(20 downto 16);
WD(31 downto 16) <= ins(15 downto 0);
elsif ins(29) = '1' then
R1 <= ins(25 downto 21);
ALUC <= ins(29 downto 26);
wait for 100 ps;
A <= RD1;
B(15 downto 0) <= ins(15 downto 0);
B(31 downto 16) <= X"0000";
W <= ins(20 downto 16);
WRITE_REG <= '1';
WD <= S;
else
R1 <= ins(25 downto 21);
R2 <= ins(20 downto 16);
ALUC <= B"0010";
wait for 100 ps;
A <= RD1;
B <= RD2;
if Z = '1' then
pc_to_write <= pc_to_write + to_integer(unsigned(ins(15 downto 0)) * 4);
end if;
WRITE_REG <= '0';
end if;
end if;
if enable_mem then
if write_mem then
WRITE_REG <= '0';
mem_w <= RD2;
else
WRITE_REG <= '1';
WD <= mem_r;
end if;
else
write_mem <= '0';
end if;
end process;
end architecture;
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use ieee.std_logic_unsigned.all;
use work.cru.all;
entity cpu_test_bench is
end entity;
architecture Behavioral of cpu_test_bench is
signal CLK: std_logic;
begin
clock: entity work.clock
port map (
CLK
);
cpu : entity work.cpu
port map (
CLK
);
end architecture;
|