aboutsummaryrefslogtreecommitdiffstats
path: root/nexus
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-02-15 09:38:22 +0000
committerGitHub <noreply@github.com>2021-02-15 09:38:22 +0000
commit1b6cdce9251d42236a3db0314e84d6a3e3f06408 (patch)
treebe3b382420edd6cb1f1b6203f7ac518c7aeb4a4f /nexus
parentf1ccc0e20531f63355e3da7c6c5f4f39a684fa3f (diff)
parent7c7d69e1d2030dc983d0ddbc0e04f6765d51bbbc (diff)
downloadnextpnr-1b6cdce9251d42236a3db0314e84d6a3e3f06408.tar.gz
nextpnr-1b6cdce9251d42236a3db0314e84d6a3e3f06408.tar.bz2
nextpnr-1b6cdce9251d42236a3db0314e84d6a3e3f06408.zip
Merge pull request #575 from YosysHQ/gatecat/belpin-2
Support for cell pin to bel pin mappings
Diffstat (limited to 'nexus')
-rw-r--r--nexus/global.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/nexus/global.cc b/nexus/global.cc
index f7abb399..62633df9 100644
--- a/nexus/global.cc
+++ b/nexus/global.cc
@@ -53,7 +53,7 @@ struct NexusGlobalRouter
// Lookup source and destination wires
WireId src = ctx->getNetinfoSourceWire(net);
- WireId dst = ctx->getNetinfoSinkWire(net, net->users.at(user_idx));
+ WireId dst = ctx->getNetinfoSinkWire(net, net->users.at(user_idx), 0);
if (src == WireId())
log_error("Net '%s' has an invalid source port %s.%s\n", ctx->nameOf(net), ctx->nameOf(net->driver.cell),