diff options
Diffstat (limited to 'src/alu.v')
-rw-r--r-- | src/alu.v | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 ); |