mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-24 22:07:43 -04:00
Fix ALU further
This commit is contained in:
parent
7764c8e95f
commit
aa7604680f
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ module riscv_alu_simplified
|
|||
|
||||
logic [31:0] operand_b_neg;
|
||||
|
||||
assign operand_b_neg = ~operand_b_i + '1;
|
||||
assign operand_b_neg = (~operand_b_i) + 32'h0001;
|
||||
|
||||
|
||||
/////////////////////////////////////
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue