1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-04-25 20:01:22 +00:00

Removed erroneous BEL assignment in JSON parser

This commit is contained in:
ZipCPU
2018-06-06 07:49:35 -04:00
parent bd08f9e698
commit 2e6d0b752a
2 changed files with 12 additions and 7 deletions

View File

@@ -108,7 +108,7 @@ struct CellInfo
BelId bel;
// cell_port -> bel_pin
dict<IdString, IdString> pins;
dict<IdString, IdString> pins;
};
struct Design
@@ -119,8 +119,8 @@ struct Design
// ...
}
dict<IdString, NetInfo*> nets;
dict<IdString, CellInfo*> cells;
dict<IdString, NetInfo*> nets;
dict<IdString, CellInfo*> cells;
};
#endif