aboutsummaryrefslogtreecommitdiff
path: root/src/alu.v
diff options
context:
space:
mode:
Diffstat (limited to 'src/alu.v')
-rw-r--r--src/alu.v5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/alu.v b/src/alu.v
index 6962129..b7c5b07 100644
--- a/src/alu.v
+++ b/src/alu.v
@@ -1,6 +1,9 @@
module alu (
- input [31:0] a, b,
+ input [31:0] a,
+ input [31:0] b,
+
input [3:0] op,
+
output reg [31:0] result,
output zero
);