-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAlu.v
69 lines (67 loc) · 803 Bytes
/
Alu.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
`timescale 1ns/1ps
module Alu(
input signed [31:0]A,
input signed [31:0]B,
input control,
input [2:0]sel,
output reg zf,
output reg signed [31:0] res
);
always @(*)
begin
case (sel)
3'b000:
begin
res = A + B;
end
3'b001:
begin
if (control == 1)
begin
res = A - B;
if (res < 0)
begin
res = 32'd1;
end
else if (res >= 0)
begin
res = 32'd0;
zf = 1'b0;
end
end
else if (control == 0)
begin
res = A - B;
end
end
3'b010:
begin
res = A * B;
end
3'b011:
begin
res = A / B;
end
3'b100:
begin
res = A & B;
end
3'b101:
begin
res = A | B;
end
3'b110:
begin
res = A ^ B;
end
3'b111:
begin
res = ~(A | B);
end
default:
begin
res = 32'd0;
end
endcase
end
endmodule