mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-24 05:47:36 -04:00
Fix ALU
This commit is contained in:
parent
d3c52bf385
commit
ff8b7f3e7f
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ module riscv_alu_simplified
|
|||
if ((operand_a_i[31] ^ operand_b_i[31]) == 0)
|
||||
is_greater_equal = (adder_result[31] == 0);
|
||||
else
|
||||
is_greater_equal = operand_a_i[31] ^ (~cmp_signed);
|
||||
is_greater_equal = operand_a_i[31] ^ (cmp_signed);
|
||||
end
|
||||
|
||||
// GTE unsigned:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue