From 13b4d6ba73808e1891b8a92f9753e0354ffa95a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Sintzoff?= Date: Thu, 7 Dec 2023 15:44:27 +0100 Subject: [PATCH] alu.sv: verible format MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: André Sintzoff --- core/alu.sv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/alu.sv b/core/alu.sv index c78cd56e58..8475f4c93a 100644 --- a/core/alu.sv +++ b/core/alu.sv @@ -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