diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-06-18 13:13:51 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-06-18 13:13:51 +0200 |
commit | 2f5e9542c2d9132b2c01d4dbc8c4d2dff97c60cf (patch) | |
tree | da4733a6f5865d6067b663d001e1cf7d19170b88 /dummy | |
parent | e0aa5c969e9dc84d5d39f51c5ffe0fa9b7316838 (diff) | |
parent | bb4c70381338e1a84920cc2d62648910528fee1c (diff) | |
download | nextpnr-2f5e9542c2d9132b2c01d4dbc8c4d2dff97c60cf.tar.gz nextpnr-2f5e9542c2d9132b2c01d4dbc8c4d2dff97c60cf.tar.bz2 nextpnr-2f5e9542c2d9132b2c01d4dbc8c4d2dff97c60cf.zip |
Merge branch 'master' of gitlab.com:SymbioticEDA/nextpnr
Diffstat (limited to 'dummy')
-rw-r--r-- | dummy/arch_place.cc | 5 | ||||
-rw-r--r-- | dummy/arch_place.h | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/dummy/arch_place.cc b/dummy/arch_place.cc index 15f813ae..07ff53ae 100644 --- a/dummy/arch_place.cc +++ b/dummy/arch_place.cc @@ -26,4 +26,9 @@ bool isValidBelForCell(Design *design, CellInfo *cell, BelId bel) return true; } +bool isBelLocationValid(Design *design, BelId bel) +{ + return true; +} + NEXTPNR_NAMESPACE_END diff --git a/dummy/arch_place.h b/dummy/arch_place.h index 66789b7d..1e14ec68 100644 --- a/dummy/arch_place.h +++ b/dummy/arch_place.h @@ -31,6 +31,9 @@ NEXTPNR_NAMESPACE_BEGIN // such as conflicting set/reset signals, etc bool isValidBelForCell(Design *design, CellInfo *cell, BelId bel); +// Return true whether all Bels at a given location are valid +bool isBelLocationValid(Design *design, BelId bel); + NEXTPNR_NAMESPACE_END #endif |