Remove some spaces

This commit is contained in:
Sven Stucki 2015-10-30 13:50:16 +01:00
parent 98eb2cc044
commit 286b82146c

4
alu.sv
View file

@ -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,