diff options
author | myrtle <gatecat@ds0.me> | 2022-12-07 16:19:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-07 16:19:55 +0100 |
commit | 0eb53d59d84ea1c46de7d9e25eb5a9901544202d (patch) | |
tree | aa7203b5b1064f327b863e7d4cb025b6292c55e4 /machxo2 | |
parent | 519011533a3b7582b984226536cb424d462d1599 (diff) | |
parent | df99b4ff6c5ce88ce1a731dc8682ab1875b8c237 (diff) | |
download | nextpnr-0eb53d59d84ea1c46de7d9e25eb5a9901544202d.tar.gz nextpnr-0eb53d59d84ea1c46de7d9e25eb5a9901544202d.tar.bz2 nextpnr-0eb53d59d84ea1c46de7d9e25eb5a9901544202d.zip |
Merge pull request #1059 from YosysHQ/gatecat/validity-errors
Add new option for verbose validity errors, use for ice40
Diffstat (limited to 'machxo2')
-rw-r--r-- | machxo2/arch.cc | 2 | ||||
-rw-r--r-- | machxo2/arch.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/machxo2/arch.cc b/machxo2/arch.cc index 93eb4e60..d85921bc 100644 --- a/machxo2/arch.cc +++ b/machxo2/arch.cc @@ -451,7 +451,7 @@ bool Arch::route() // --------------------------------------------------------------- -bool Arch::isBelLocationValid(BelId bel) const +bool Arch::isBelLocationValid(BelId bel, bool explain_invalid) const { // FIXME: Same deal as isValidBelForCell. return true; diff --git a/machxo2/arch.h b/machxo2/arch.h index ddcb9264..489a44ab 100644 --- a/machxo2/arch.h +++ b/machxo2/arch.h @@ -643,7 +643,7 @@ struct Arch : BaseArch<ArchRanges> bool route() override; // Placer - bool isBelLocationValid(BelId bel) const override; + bool isBelLocationValid(BelId bel, bool explain_invalid = false) const override; static const std::string defaultPlacer; static const std::vector<std::string> availablePlacers; |