mirror of https://github.com/YosysHQ/nextpnr.git
Merge pull request #892 from yrabbit/off-by-one
gowin: Fix last MUX2_LUT8
This commit is contained in:
commit
089ca8258e
|
|
@ -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