mirror of https://github.com/YosysHQ/nextpnr.git
gowin: Fix last MUX8
In fact, there is also an input/output column. Signed-off-by: YRabbit <rabbit@yrabbit.cyou>
This commit is contained in:
parent
3266c51d85
commit
045ce3f148
|
|
@ -612,7 +612,7 @@ void Arch::addMuxBels(const DatabasePOD *db, int row, int col)
|
|||
int gcol = col + 1;
|
||||
|
||||
// no MUX2_LUT8 in the last column
|
||||
if (j == 7 && col == getGridDimX() - 1) {
|
||||
if (j == 7 && col == getGridDimX() - 2) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue