aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorZipCPU <dgisselq@ieee.org>2018-06-06 07:49:35 -0400
committerZipCPU <dgisselq@ieee.org>2018-06-06 07:49:35 -0400
commit2e6d0b752ab2d269f822bfd3ea029b100ecf4233 (patch)
treeda3cb5c0b30e5683b2919538328f0c22ae384095 /common
parentbd08f9e698269764d9e06052470d4a699f69f951 (diff)
downloadnextpnr-2e6d0b752ab2d269f822bfd3ea029b100ecf4233.tar.gz
nextpnr-2e6d0b752ab2d269f822bfd3ea029b100ecf4233.tar.bz2
nextpnr-2e6d0b752ab2d269f822bfd3ea029b100ecf4233.zip
Removed erroneous BEL assignment in JSON parser
Diffstat (limited to 'common')
-rw-r--r--common/design.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/design.h b/common/design.h
index 3e4091c3..564d5ce5 100644
--- a/common/design.h
+++ b/common/design.h
@@ -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