Skip to content

Commit

Permalink
Update ALU MULT mode in gowin to match nextpnr
Browse files Browse the repository at this point in the history
  • Loading branch information
aerkiaga committed Dec 23, 2024
1 parent 8acc77c commit 9a11204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion techlibs/gowin/cells_sim.v
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ always @* begin
C = I0;
end
MULT: begin
S = I0 & I1;
S = (I0 & I1) ^ I3;
C = I0 & I1;
end
endcase
Expand Down

0 comments on commit 9a11204

Please sign in to comment.