Skip to content

Commit

Permalink
alu.sv: verible format
Browse files Browse the repository at this point in the history
Signed-off-by: André Sintzoff <[email protected]>
  • Loading branch information
ASintzoff committed Dec 7, 2023
1 parent 2745f3e commit 13b4d6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/alu.sv
Original file line number Diff line number Diff line change
Expand Up @@ -307,9 +307,9 @@ module alu
end
unique case (fu_data_i.operation)
// Integer minimum/maximum
MAX: result_o = less ? fu_data_i.operand_b : fu_data_i.operand_a;
MAX: result_o = less ? fu_data_i.operand_b : fu_data_i.operand_a;
MAXU: result_o = less ? fu_data_i.operand_b : fu_data_i.operand_a;
MIN: result_o = ~less ? fu_data_i.operand_b : fu_data_i.operand_a;
MIN: result_o = ~less ? fu_data_i.operand_b : fu_data_i.operand_a;
MINU: result_o = ~less ? fu_data_i.operand_b : fu_data_i.operand_a;

// Single bit instructions operations
Expand Down

0 comments on commit 13b4d6b

Please sign in to comment.