-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathALU32Bit.v
457 lines (405 loc) · 8.86 KB
/
ALU32Bit.v
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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
`timescale 1ns / 1ps
////////////////////////////////////////////////////////////////////////////////
// ECE369 - Computer Architecture
//
// Module - ALU32Bit.v
// Description - 32-Bit wide arithmetic logic unit (ALU).
//
// INPUTS:-
// ALUControl: N-Bit input control bits to select an ALU operation.
// A: 32-Bit input port A.
// B: 32-Bit input port B.
//
// OUTPUTS:-
// ALUResult: 32-Bit ALU result output.
// ZERO: 1-Bit output flag.
//
// FUNCTIONALITY:-
// Design a 32-Bit ALU, so that it supports all arithmetic operations
// needed by the MIPS instructions given in Labs5-8.docx document.
// The 'ALUResult' will output the corresponding result of the operation
// based on the 32-Bit inputs, 'A', and 'B'.
// The 'Zero' flag is high when 'ALUResult' is '0'.
// The 'ALUControl' signal should determine the function of the ALU
// You need to determine the bitwidth of the ALUControl signal based on the number of
// operations needed to support.
////////////////////////////////////////////////////////////////////////////////
module ALU32Bit(ALUInstruction, ALUhi, ALUlo, A, B, PC, ALUResult, ALUResult2,Zero);
input [5:0] ALUInstruction; // control bits for ALU operation
input [31:0] A, B;
input [31:0] ALUlo;
input [31:0] PC;
output reg Zero;
input [31:0] ALUhi;
output reg [63:0] ALUResult; // answer
reg [31:0] tempReg;
reg [63:0] tempreg2;
reg [63:0] ALUResultTemp1; // answer
reg [31:0] ALUResultTemp2;
output reg [63:0] ALUResult2;
//Start of Arithmetic Controls//
always @(*)
case (ALUInstruction)
//ADD,ADDI, LW, SW, LB, SB, LH, SH
'b000000:
begin
ALUResult = A+B;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
//SUB
'b000001:
begin
ALUResult= A-B;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
//AND (This is a bitwise AND)
'b000010:
begin
ALUResult=A&B;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
//OR (This is a bitwise OR)
'b000011:
begin
ALUResult=A|B;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
//NOR (This is a bitwise NOR)
'b000100:
begin
tempReg = A|B;
ALUResult= ~tempReg;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
//XOR (This is a bitwise XOR)
'b000101:
begin
ALUResult=A^B;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
//SEH
'b000110:
begin
ALUResult= {{16{B[15]}}, B[15:0]}; // I think this works, but i'm not sure, will have to test.
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
//SLL
'b000111: //7
begin
ALUResult=B<<A;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
//SRL
'b001000: //8
begin
ALUResult=B>>A;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
//SLT #ask
'b001001: //9
begin
if($signed(A)<$signed(B))begin
ALUResult<=1;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
else begin
ALUResult<=0;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
end
//MOVN
'b001010: //10
begin
if(B != 'h00 )begin
ALUResult = A;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
else begin
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
end
//MOVZ
'b001011: //11
begin
if(B=='h00)begin
ALUResult = A;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
else begin
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
end
//ROTRV,ROTR
'b001100: //12
begin
tempReg = (B>>A);
ALUResultTemp2 = B<<(32-A);
ALUResult = ALUResultTemp2|tempReg;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
//SRA
'b001101: //13
begin
if(B[31]==1)
begin
ALUResultTemp2 = B >>> A;
ALUResult=ALUResultTemp2;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
else
begin
ALUResultTemp2 = B >> A;
ALUResult=ALUResultTemp2;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
end
//SRAV
'b001110: //14
begin
ALUResult = B>>>A;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
//SEB
'b001111: //15
begin
ALUResult = {{24{B[7]}}, B[7:0]};
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
//SLTIU
'b010000: //16
begin
if($unsigned(A) < $unsigned(B))
begin
ALUResult = 1;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
else
begin
ALUResult = 0;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
end
//SLTU
'b010001: //17
begin
if($unsigned(A) < $unsigned(B))
begin
ALUResult = 1;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
else
begin
ALUResult = 0;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
end
//MUL
'b010010: //18
begin
ALUResult = A * B;
ALUResult2 = {ALUhi, ALUlo};
Zero=0;
end
//MULTU
'b010011: //19
begin
ALUResult2 = $unsigned(A)*$unsigned(B);
Zero=0;
end
//MADD
'b010100: //20
begin
tempreg2 = {ALUhi, ALUlo};
ALUResultTemp1 = $signed(tempreg2) + $signed(A)*$signed(B);
ALUResult2=ALUResultTemp1;
Zero=0;
end
//MSUB
'b010101: //21
begin;
Zero=0;
ALUResult2 = $signed({ALUhi, ALUlo}) - $signed(A)*$signed(B);
end
//MULT
'b010110: //22
begin
Zero=0;
ALUResult2 = $signed(A)*$signed(B);
end
//ADDU, ADDIU
'b010111:
begin
Zero=0;
ALUResult = $unsigned(A) + $unsigned(B);
ALUResult2 = {ALUhi, ALUlo};
end
//MFHI
'b011011: //23
begin
Zero=0;
ALUResult = ALUhi;
// ALUResult = 64'h12;
ALUResult2 = {ALUhi, ALUlo};
end
//MFLO
'b011000: //24
begin
Zero=0;
ALUResult = ALUlo;
ALUResult2 = {ALUhi, ALUlo};
end
//MTHI
'b011001: //25
begin
Zero=0;
ALUResult2 = {A, ALUlo};
end
//MTLO
'b011010: //26
begin
Zero=0;
ALUResult2 = {ALUhi, A};
end
//next part of lab
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
//BLTZ
'b100101: //37
begin
if($signed(A)<0)
begin
Zero = 1;
end
else
begin
Zero=0;
end
ALUResult2 = {ALUhi, ALUlo};
end
//BEQ
'b011100: //28
begin
if(A==B)
begin
Zero = 1;
end
else
begin
Zero = 0;
end
ALUResult2 = {ALUhi, ALUlo};
end
//BNE
'b011101: //29
begin
if($signed(A)!= $signed(B))
begin
Zero = 1;
end
else
begin
Zero = 0;
end
ALUResult2 = {ALUhi, ALUlo};
end
//BGTZ
'b011110: //30
begin
if($signed(A)>0)
begin
Zero = 1;
end
else
begin
Zero = 0;
end
ALUResult2 = {ALUhi, ALUlo};
end
//BLEZ
'b011111: //31
begin
if($signed(A)<=0)
begin
Zero = 1;
end
else
begin
Zero=0;
end
ALUResult2 = {ALUhi, ALUlo};
end
//BGEZ
'b100000: //32
if(B==2'h01) //bgez
begin
if($signed(A)>= 0)
begin
Zero = 1;
end
else
begin
Zero = 0;
end
ALUResult2 = {ALUhi, ALUlo};
end
//lui
'b100001: //33
begin
Zero=0;
ALUResultTemp2 = B<<16;
ALUResult = {ALUResultTemp2[31:16], 16'b0000000000000000};
ALUResult2 = {ALUhi, ALUlo};
end
//j
'b100110: //38
begin
Zero=1;
ALUResult2 = {ALUhi, ALUlo};
end
//jr
'b100010: //34
begin
Zero=1;
ALUResult2 = {ALUhi, ALUlo};
end
//jal
'b100011: //35
begin
Zero=1;
ALUResult = PC;
ALUResult2 = {ALUhi, ALUlo};
end
/* Start of Data Memory Operations*/
// lw, sw, lb, sb, lh, sh
'b100100: //36
begin
ALUResult = A + B;
ALUResult2 = {ALUhi, ALUlo};
end
/* End of Data Memory */
// Last used number is 38
endcase
endmodule