aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2019-06-02 18:38:20 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2019-06-02 18:38:20 +0200
commit82ed1803c726e912730c3053179f179b90c9b694 (patch)
treece90345de05eba6c8b53ebf0c225f9c277fc027c /common
parent7c65da417b5a222cc68a83e25c60c1f1326473f2 (diff)
downloadnextpnr-82ed1803c726e912730c3053179f179b90c9b694.tar.gz
nextpnr-82ed1803c726e912730c3053179f179b90c9b694.tar.bz2
nextpnr-82ed1803c726e912730c3053179f179b90c9b694.zip
use NEXTPNR_BEL, since BEL is initial placement
Diffstat (limited to 'common')
-rw-r--r--common/command.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/command.cc b/common/command.cc
index 7d4cd252..d0ef5174 100644
--- a/common/command.cc
+++ b/common/command.cc
@@ -350,7 +350,7 @@ int CommandHandler::executeMain(std::unique_ptr<Context> ctx)
} else {
for (auto &pair : ctx->cells) {
auto &c = pair.second;
- auto bel = c->attrs.find(ctx->id("BEL"));
+ auto bel = c->attrs.find(ctx->id("NEXTPNR_BEL"));
if (bel!=c->attrs.end())
{
BelId b = ctx->getBelByName(ctx->id(bel->second.c_str()));