diff options
Diffstat (limited to 'fpga_interchange/site_arch.cc')
-rw-r--r-- | fpga_interchange/site_arch.cc | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/fpga_interchange/site_arch.cc b/fpga_interchange/site_arch.cc index 9cf7fa0c..4438193b 100644 --- a/fpga_interchange/site_arch.cc +++ b/fpga_interchange/site_arch.cc @@ -269,16 +269,11 @@ SiteArch::SiteArch(const SiteInformation *site_info) : ctx(site_info->ctx), site NPNR_ASSERT(result.second); } } -} -SiteWire SiteArch::getBelPinWire(BelId bel, IdString pin) const -{ - WireId wire = ctx->getBelPinWire(bel, pin); - return SiteWire::make(site_info, wire); + blocking_net.name = ctx->id("$nextpnr_blocked_net"); + blocking_site_net.net = &blocking_net; } -PortType SiteArch::getBelPinType(BelId bel, IdString pin) const { return ctx->getBelPinType(bel, pin); } - const char *SiteArch::nameOfWire(const SiteWire &wire) const { switch (wire.type) { |