3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

Update ALU MULT mode in gowin to match nextpnr

This commit is contained in:
Aritz Erkiaga 2024-12-22 18:26:30 +01:00
parent 8acc77c1e0
commit 9a11204329

View file

@ -1005,7 +1005,7 @@ always @* begin
C = I0;
end
MULT: begin
S = I0 & I1;
S = (I0 & I1) ^ I3;
C = I0 & I1;
end
endcase