diff --git a/alu.sv b/alu.sv index 61a87a58..20b8b638 100644 --- a/alu.sv +++ b/alu.sv @@ -327,11 +327,11 @@ module riscv_alu `ALU_XOR: result_o = operand_a_i ^ operand_b_i; // Shift Operations - `ALU_SLL: result_o = shift_left_result; + `ALU_SLL: result_o = shift_left_result; `ALU_SRL, `ALU_SRA, - `ALU_ROR: result_o = shift_result; + `ALU_ROR: result_o = shift_result; // Extension Operations `ALU_EXTBZ,