mirror of https://github.com/YosysHQ/yosys.git
Fix $lut pin ordering inside $__ICE40_CARRY_WRAPPER
This commit is contained in:
parent
12c692f6ed
commit
8a2480526f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue