diff options
author | gatecat <gatecat@ds0.me> | 2021-03-23 15:40:34 +0000 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2021-03-23 15:40:34 +0000 |
commit | 79400756f5d9d9c751aea93d1071d95073751075 (patch) | |
tree | 7de02ed351faa3eafa36a18e3a44e4bff5baaa18 /fpga_interchange | |
parent | 9ef412c2cc623ef84d8fb866734f3892fc6f127c (diff) | |
download | nextpnr-79400756f5d9d9c751aea93d1071d95073751075.tar.gz nextpnr-79400756f5d9d9c751aea93d1071d95073751075.tar.bz2 nextpnr-79400756f5d9d9c751aea93d1071d95073751075.zip |
interchange: Add nice error for missing cell pins
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'fpga_interchange')
-rw-r--r-- | fpga_interchange/site_router.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fpga_interchange/site_router.cc b/fpga_interchange/site_router.cc index c470f3f6..3252cac1 100644 --- a/fpga_interchange/site_router.cc +++ b/fpga_interchange/site_router.cc @@ -58,6 +58,9 @@ bool check_initial_wires(const Context *ctx, SiteInformation *site_info) for (CellInfo *cell : site_info->cells_in_site) { BelId bel = cell->bel; for (const auto &pin_pair : cell->cell_bel_pins) { + if (!cell->ports.count(pin_pair.first)) + log_error("Cell %s:%s is missing expected port %s\n", ctx->nameOf(cell), cell->type.c_str(ctx), + pin_pair.first.c_str(ctx)); const PortInfo &port = cell->ports.at(pin_pair.first); NPNR_ASSERT(port.net != nullptr); |