diff options
author | gatecat <gatecat@ds0.me> | 2021-03-22 18:32:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-22 18:32:04 +0000 |
commit | a3ed97c0db8aced801a7bceb8d336d6203a671ad (patch) | |
tree | 2df15cb63b0e315b9bac9b0b0cc9b6a7f243e7d9 /fpga_interchange/site_router.h | |
parent | e8d36bf5bdda84503d5c796b933b1c986a277bf5 (diff) | |
parent | 32f2ec86c4b83d1e0f3c0982566ff4de30edebb3 (diff) | |
download | nextpnr-a3ed97c0db8aced801a7bceb8d336d6203a671ad.tar.gz nextpnr-a3ed97c0db8aced801a7bceb8d336d6203a671ad.tar.bz2 nextpnr-a3ed97c0db8aced801a7bceb8d336d6203a671ad.zip |
Merge pull request #637 from litghost/refine_site_router
Refine site router
Diffstat (limited to 'fpga_interchange/site_router.h')
-rw-r--r-- | fpga_interchange/site_router.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fpga_interchange/site_router.h b/fpga_interchange/site_router.h index c2590728..ebdfbe3b 100644 --- a/fpga_interchange/site_router.h +++ b/fpga_interchange/site_router.h @@ -25,6 +25,8 @@ #include "nextpnr_namespaces.h" #include "nextpnr_types.h" +#include "site_arch.h" +#include "site_routing_storage.h" NEXTPNR_NAMESPACE_BEGIN @@ -44,6 +46,7 @@ struct SiteRouter void bindBel(CellInfo *cell); void unbindBel(CellInfo *cell); bool checkSiteRouting(const Context *ctx, const TileStatus &tile_status) const; + void bindSiteRouting(Context *ctx); }; NEXTPNR_NAMESPACE_END |