Bugfix in picorv32_pcpi_fast_mul

This commit is contained in:
Clifford Wolf 2016-08-30 11:14:46 +02:00
parent b9ed4364d4
commit bfba9b3eb3
1 changed files with 1 additions and 1 deletions

View File

@ -1909,7 +1909,7 @@ module picorv32_pcpi_fast_mul (
end
always @(posedge clk) begin
rd <= rs1 * rs2;
rd <= $signed(rs1) * $signed(rs2);
end
always @(posedge clk) begin