3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-07 18:05:24 +00:00

Fix $lut pin ordering inside $__ICE40_CARRY_WRAPPER

This commit is contained in:
Eddie Hung 2019-08-12 12:19:25 -07:00
parent 12c692f6ed
commit 8a2480526f

View file

@ -75,7 +75,7 @@ module \$__ICE40_CARRY_WRAPPER (output CO, O, input A, B, CI, I0, I3);
.WIDTH(4),
.LUT(LUT)
) lut (
.A({I3,B,A,I0}),
.A({I0,A,B,I3}),
.Y(O)
);
endmodule