diff options
Diffstat (limited to 'rtl/src/arithmetic_unit.v')
-rw-r--r-- | rtl/src/arithmetic_unit.v | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rtl/src/arithmetic_unit.v b/rtl/src/arithmetic_unit.v index e987dbd..67ca4bc 100644 --- a/rtl/src/arithmetic_unit.v +++ b/rtl/src/arithmetic_unit.v @@ -2,10 +2,10 @@ // Arithmetic part of the alu. module arithmetic_unit ( - input [31:0] a, - input [31:0] b, + input [31:0] a, + input [31:0] b, - input [1:0] op, + input [1:0] op, output reg [31:0] result ); |