1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-04-17 16:44:36 +00:00

Fix router1 check for ECP5

Signed-off-by: David Shah <dave@ds0.me>
This commit is contained in:
David Shah
2018-11-12 11:23:31 +00:00
parent 6002a0a80a
commit e0fe523606

View File

@@ -770,6 +770,11 @@ bool Context::checkRoutedDesign() const
for (auto &net_it : ctx->nets) {
NetInfo *net_info = net_it.second.get();
#ifdef ARCH_ECP5
if (net_info->is_global)
continue;
#endif
if (ctx->debug)
log("checking net %s\n", net_info->name.c_str(ctx));