diff options
author | gatecat <gatecat@ds0.me> | 2021-03-22 18:31:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-22 18:31:32 +0000 |
commit | f6ae068cb205527d63d93e5b3581b85a22f90f34 (patch) | |
tree | 93704cb3edc4497651e23adfb7d6541eab1bb907 /generic/arch.h | |
parent | 53ed6979a964f3eaaabc0d97399eec9b4c3347f9 (diff) | |
parent | e7d81913a48bffd970f7a92acc44eb36d9f996f7 (diff) | |
download | nextpnr-f6ae068cb205527d63d93e5b3581b85a22f90f34.tar.gz nextpnr-f6ae068cb205527d63d93e5b3581b85a22f90f34.tar.bz2 nextpnr-f6ae068cb205527d63d93e5b3581b85a22f90f34.zip |
Merge pull request #632 from litghost/add_check_pip_for_net
Add "checkPipAvailForNet" to Arch API.
Diffstat (limited to 'generic/arch.h')
-rw-r--r-- | generic/arch.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/generic/arch.h b/generic/arch.h index 1d37b2fd..92260ce0 100644 --- a/generic/arch.h +++ b/generic/arch.h @@ -279,6 +279,7 @@ struct Arch : ArchAPI<ArchRanges> void bindPip(PipId pip, NetInfo *net, PlaceStrength strength) override; void unbindPip(PipId pip) override; bool checkPipAvail(PipId pip) const override; + bool checkPipAvailForNet(PipId pip, NetInfo *net) const override; NetInfo *getBoundPipNet(PipId pip) const override; WireId getConflictingPipWire(PipId pip) const override; NetInfo *getConflictingPipNet(PipId pip) const override; |