-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrol_unit_behav.vhdl
416 lines (411 loc) · 9.97 KB
/
control_unit_behav.vhdl
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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
architecture behav of control_unit is
type fsm_state is (
fetch_opc,
decode,
fetch_i,
fetch_m,
load_addr,
load_op,
execute,
store,
ac_to_aa,
ac_to_mx,
jump,
branch,
save_pc,
calc_addr);
signal current_state: fsm_state;
signal next_state, next_state_int: fsm_state;
begin
state_reg: process(clk, res_n) is
begin
if res_n = '0' then
current_state <= fetch_opc;
next_state <= decode;
elsif clk'event and clk = '1' then
current_state <= next_state;
next_state <= next_state_int;
end if;
end process state_reg;
do_fsm: process(current_state) is
begin
case current_state is
when fetch_opc =>
easel <= '1';
edsel <= memory_in;
mxena <= '0';
aasel <= '-';
aaena <= '0';
irena <= '1';
pdsel <= '1';
pcsel <= '0';
pcena <= '1';
acena <= '0';
fsm_read <= '1';
fsm_write <= '0';
when decode =>
easel <= '-';
edsel <= reg_ac;
mxena <= '0';
aasel <= '-';
aaena <= '0';
irena <= '0';
pdsel <= '-';
pcsel <= '-';
pcena <= '0';
acena <= '0';
fsm_read <= '0';
fsm_write <= '0';
when fetch_i =>
easel <= '1';
edsel <= memory_in;
mxena <= '1';
aasel <= '-';
aaena <= '0';
irena <= '0';
pdsel <= '1';
pcsel <= '0';
pcena <= '1';
acena <= '0';
fsm_read <= '1';
fsm_write <= '0';
when fetch_m =>
easel <= '1';
edsel <= memory_in;
mxena <= '0';
aasel <= '0';
aaena <= '1';
irena <= '0';
pdsel <= '1';
pcsel <= '0';
pcena <= '1';
acena <= '0';
fsm_read <= '1';
fsm_write <= '0';
when load_addr =>
easel <= '0';
edsel <= memory_in;
mxena <= '0';
aasel <= '0';
aaena <= '1';
irena <= '0';
pdsel <= '-';
pcsel <= '-';
pcena <= '0';
acena <= '0';
fsm_read <= '1';
fsm_write <= '0';
when load_op =>
easel <= '0';
edsel <= memory_in;
mxena <= '1';
aasel <= '-';
aaena <= '0';
irena <= '0';
pdsel <= '-';
pcsel <= '-';
pcena <= '0';
acena <= '0';
fsm_read <= '1';
fsm_write <= '0';
when execute =>
easel <= '-';
edsel <= reg_ac;
mxena <= '0';
aasel <= '-';
aaena <= '0';
irena <= '0';
pdsel <= '-';
pcsel <= '-';
pcena <= '0';
acena <= '1';
fsm_read <= '0';
fsm_write <= '0';
when store =>
easel <= '0';
edsel <= reg_ac;
mxena <= '0';
aasel <= '-';
aaena <= '0';
irena <= '0';
pdsel <= '-';
pcsel <= '-';
pcena <= '0';
acena <= '0';
fsm_read <= '0';
fsm_write <= '1';
when ac_to_aa =>
easel <= '-';
edsel <= reg_ac;
mxena <= '0';
aasel <= '0';
aaena <= '1';
irena <= '0';
pdsel <= '-';
pcsel <= '-';
pcena <= '0';
acena <= '0';
fsm_read <= '0';
fsm_write <= '0';
when ac_to_mx =>
easel <= '-';
edsel <= reg_ac;
mxena <= '1';
aasel <= '-';
aaena <= '0';
irena <= '0';
pdsel <= '-';
pcsel <= '-';
pcena <= '0';
acena <= '0';
fsm_read <= '0';
fsm_write <= '0';
when jump =>
easel <= '-';
edsel <= reg_ac;
mxena <= '0';
aasel <= '-';
aaena <= '0';
irena <= '0';
pdsel <= '-';
pcsel <= '1';
pcena <= '1';
acena <= '0';
fsm_read <= '0';
fsm_write <= '0';
when branch =>
easel <= '-';
edsel <= reg_pc;
mxena <= '1';
aasel <= '-';
aaena <= '0';
irena <= '0';
pdsel <= '0';
pcsel <= '0';
pcena <= '1';
acena <= '0';
fsm_read <= '0';
fsm_write <= '0';
when save_pc =>
easel <= '-';
edsel <= reg_ac;
mxena <= '0';
aasel <= '-';
aaena <= '0';
irena <= '0';
pdsel <= '-';
pcsel <= '-';
pcena <= '0';
acena <= '1';
fsm_read <= '0';
fsm_write <= '0';
when calc_addr =>
easel <= '-';
edsel <= reg_ac;
mxena <= '0';
aasel <= '1';
aaena <= '1';
irena <= '0';
pdsel <= '-';
pcsel <= '-';
pcena <= '0';
acena <= '0';
fsm_read <= '0';
fsm_write <= '0';
end case;
end process do_fsm;
calc_srena: process(all) is
begin
if disassembled_ir.xsel = bus_ix and
disassembled_ir.cinsel = constant_zero and
disassembled_ir.alumode = axc then
srena <= '0';
else
srena <= acena;
end if;
end process calc_srena;
determine_transition: process(all)
begin
case current_state is
when fetch_opc =>
next_state_int <= decode;
when decode =>
case disassembled_ir.opc is
when lsl_ac | lsr_ac | rol_ac | ror_ac | asl_ac | asr_ac | rcl_ac | rcr_ac | not_ac | clr_ac | inc_ac | dec_ac =>
next_state_int <= execute;
when load_i | or_i |
xor_i | and_i |
add_i | addc_i |
sub_i | subc_i |
rcl_i | rcr_i |
load_dmi | or_dmi |
xor_dmi | and_dmi |
add_dmi | addc_dmi |
sub_dmi | subc_dmi |
lsl_dmi | lsr_dmi |
rol_dmi | ror_dmi |
asl_dmi | asr_dmi |
rcl_dmi | rcr_dmi |
not_dmi | neg_dmi |
inc_dmi | dec_dmi |
store_dmi =>
next_state_int <= fetch_i;
when loadi =>
next_state_int <= ac_to_aa;
when jmp =>
next_state_int <= ac_to_mx;
when others =>
next_state_int <= fetch_m;
end case;
when fetch_i =>
case disassembled_ir.opc is
when load_dmi | or_dmi |
xor_dmi | and_dmi |
add_dmi | addc_dmi |
sub_dmi | subc_dmi |
lsl_dmi | lsr_dmi |
rol_dmi | ror_dmi |
asl_dmi | asr_dmi |
rcl_dmi | rcr_dmi |
not_dmi | neg_dmi |
inc_dmi | dec_dmi |
store_dmi =>
next_state_int <= fetch_m;
when bsr =>
next_state_int <= branch;
when bra | bhi | bls | bcc | bcs | bne | beq | bvc |
bvs | bpl | bmi | bge | blt | bgt | ble =>
if cc_out = '1' then
next_state_int <= branch;
else
next_state_int <= fetch_opc;
end if;
when others =>
next_state_int <= execute;
end case;
when fetch_m =>
case disassembled_ir.opc is
when load_mi | load_dmi |
or_mi | or_dmi |
xor_mi | xor_dmi |
and_mi | and_dmi |
add_mi | add_dmi |
addc_mi | addc_dmi |
sub_mi | sub_dmi |
subc_mi | subc_dmi |
lsl_mi | lsl_dmi |
lsr_mi | lsr_dmi |
rol_mi | rol_dmi |
ror_mi | ror_dmi |
asl_mi | asl_dmi |
asr_mi | asr_dmi |
rcl_mi | rcl_dmi |
rcr_mi | rcr_dmi |
not_mi | not_dmi |
neg_mi | neg_dmi |
inc_mi | inc_dmi |
dec_mi | dec_dmi |
store_mi | store_dmi =>
next_state_int <= load_addr;
when store_m =>
next_state_int <= store;
when others =>
next_state_int <= load_op;
end case;
when load_addr =>
case disassembled_ir.opc is
when store_mi =>
next_state_int <= store;
when load_dmi | or_dmi |
xor_dmi | and_dmi |
add_dmi | addc_dmi |
sub_dmi | subc_dmi |
lsl_dmi | lsr_dmi |
rol_dmi | ror_dmi |
asl_dmi | asr_dmi |
rcl_dmi | rcr_dmi |
not_dmi | neg_dmi |
inc_dmi | dec_dmi |
store_dmi =>
next_state_int <= calc_addr;
when others =>
next_state_int <= load_op;
end case;
when load_op =>
next_state_int <= execute;
when execute =>
next_state_int <= fetch_opc;
when store =>
next_state_int <= fetch_opc;
when ac_to_aa =>
next_state_int <= load_op;
when ac_to_mx =>
next_state_int <= jump;
when jump =>
next_state_int <= fetch_opc;
when branch =>
case disassembled_ir.opc is
when bsr =>
next_state_int <= save_pc;
when others =>
next_state_int <= fetch_opc;
end case;
when save_pc =>
next_state_int <= fetch_opc;
when calc_addr =>
case disassembled_ir.opc is
when store_dmi =>
next_state_int <= store;
when others =>
next_state_int <= load_op;
end case;
end case;
end process determine_transition;
lookahead: process(next_state) is
begin
case next_state is
when fetch_opc =>
next_easel <= '1';
next_edsel <= memory_in;
when decode =>
next_easel <= '-';
next_edsel <= reg_ac;
when fetch_i =>
next_easel <= '1';
next_edsel <= memory_in;
when fetch_m =>
next_easel <= '1';
next_edsel <= memory_in;
when load_addr =>
next_easel <= '0';
next_edsel <= memory_in;
when load_op =>
next_easel <= '0';
next_edsel <= memory_in;
when execute =>
next_easel <= '-';
next_edsel <= reg_ac;
when store =>
next_easel <= '0';
next_edsel <= reg_ac;
when ac_to_aa =>
next_easel <= '-';
next_edsel <= reg_ac;
when ac_to_mx =>
next_easel <= '-';
next_edsel <= reg_ac;
when jump =>
next_easel <= '-';
next_edsel <= reg_ac;
when branch =>
next_easel <= '-';
next_edsel <= reg_pc;
when save_pc =>
next_easel <= '-';
next_edsel <= reg_ac;
when calc_addr =>
next_easel <= '-';
next_edsel <= reg_ac;
end case;
end process lookahead;
end architecture behav;