Skip to content

Commit

Permalink
ibex: fix multiplier patch
Browse files Browse the repository at this point in the history
  • Loading branch information
phsauter committed Sep 25, 2024
1 parent 4f3f535 commit a15ffef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rtl/ibex/ibex_ex_block.sv
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ module ibex_ex_block #(
end else if (RV32M == RV32MNone) begin : gen_multidiv_none
assign multdiv_alu_operand_a = '0;
assign multdiv_alu_operand_b = '0;
assign multdiv_result_o = '0;
assign multdiv_result = '0;
assign multdiv_valid = 1'b0;
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ index 62e03964..65af9e6c 100644
+ end else if (RV32M == RV32MNone) begin : gen_multidiv_none
+ assign multdiv_alu_operand_a = '0;
+ assign multdiv_alu_operand_b = '0;
+ assign multdiv_result_o = '0;
+ assign multdiv_result = '0;
+ assign multdiv_valid = 1'b0;
end

Expand Down

0 comments on commit a15ffef

Please sign in to comment.