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

Merge pull request #4827 from aerkiaga/main

Update ALU MULT mode in gowin to match nextpnr
This commit is contained in:
KrystalDelusion 2025-03-13 10:49:37 +13:00 committed by GitHub
commit bf96ed322d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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