diff options
Diffstat (limited to 'ecp5')
-rw-r--r-- | ecp5/globals.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ecp5/globals.cc b/ecp5/globals.cc index 65b1710f..28061e1a 100644 --- a/ecp5/globals.cc +++ b/ecp5/globals.cc @@ -68,6 +68,8 @@ class Ecp5GlobalRouter std::unordered_map<IdString, int> clockCount; for (auto &net : ctx->nets) { NetInfo *ni = net.second.get(); + if (ni->name == ctx->id("$PACKER_GND_NET") || ni->name == ctx->id("$PACKER_VCC_NET")) + continue; clockCount[ni->name] = 0; for (const auto &user : ni->users) { if (is_clock_port(user)) { |