mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-22 21:27:10 -04:00
alu.sv: verible format (#1683)
This commit is contained in:
parent
559aa8f640
commit
e5d86993df
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue