Fix router1 check for ECP5
Signed-off-by: David Shah <dave@ds0.me>
This commit is contained in:
parent
6002a0a80a
commit
e0fe523606
@ -770,6 +770,11 @@ bool Context::checkRoutedDesign() const
|
|||||||
for (auto &net_it : ctx->nets) {
|
for (auto &net_it : ctx->nets) {
|
||||||
NetInfo *net_info = net_it.second.get();
|
NetInfo *net_info = net_it.second.get();
|
||||||
|
|
||||||
|
#ifdef ARCH_ECP5
|
||||||
|
if (net_info->is_global)
|
||||||
|
continue;
|
||||||
|
#endif
|
||||||
|
|
||||||
if (ctx->debug)
|
if (ctx->debug)
|
||||||
log("checking net %s\n", net_info->name.c_str(ctx));
|
log("checking net %s\n", net_info->name.c_str(ctx));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user