-
Notifications
You must be signed in to change notification settings - Fork 0
/
alu.v.bak
25 lines (25 loc) · 998 Bytes
/
alu.v.bak
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
module alu (a,b,aluc,s,z);
input [31:0] a,b;
input [3:0] aluc;
output [31:0] s;
output z;
reg [31:0] s;
reg z;
always @ (a or b or aluc)
begin // event
casex (aluc)
4'bx000: s = a + b; //x000 ADD
4'bx100: s = a - b; //x100 SUB
4'bx001: s = a & b; //x001 AND
4'bx101: s = a | b; //x101 OR
4'bx010: s = a ^ b; //x010 XOR
4'bx110: s = {b,16'b0}; //x110 LUI: imm << 16bit
4'b0011: s = b <<< a; //0011 SLL: rd <- (rt << sa)
4'b0111: s = b >>> a; //0111 SRL: rd <- (rt >> sa) (logical)
4'b1111: s = $signed(b) >>> a; //1111 SRA: rd <- (rt >> sa) (arithmetic)
default: s = 0;
endcase
if (s == 0) z = 1;
else z = 0;
end
endmodule