Fix ALU further

This commit is contained in:
Markus Wegmann 2016-12-16 23:46:22 +01:00
parent 7764c8e95f
commit aa7604680f

View file

@ -73,7 +73,7 @@ module riscv_alu_simplified
logic [31:0] operand_b_neg; logic [31:0] operand_b_neg;
assign operand_b_neg = ~operand_b_i + '1; assign operand_b_neg = (~operand_b_i) + 32'h0001;
///////////////////////////////////// /////////////////////////////////////