1
0
Fork 0
mirror of https://github.com/YosysHQ/picorv32.git synced 2025-01-03 03:43:38 -05:00

Reduce rs1, rs2 from 64 to 33 bits to make life for synthesis tools easier.

This commit is contained in:
Tom Verbeure 2016-08-29 18:00:49 -07:00
parent 9d13c05dd2
commit 9201bff2ef

View file

@ -1889,7 +1889,8 @@ module picorv32_pcpi_fast_mul (
wire instr_rs2_signed = |{instr_mulh};
reg active1, active2, shift_out;
reg [63:0] rs1, rs2, rd;
reg [32:0] rs1, rs2;
reg [63:0] rd;
always @* begin
instr_mul = 0;