aboutsummaryrefslogtreecommitdiffstats
path: root/dummy/arch_place.cc
diff options
context:
space:
mode:
Diffstat (limited to 'dummy/arch_place.cc')
-rw-r--r--dummy/arch_place.cc9
1 files changed, 7 insertions, 2 deletions
diff --git a/dummy/arch_place.cc b/dummy/arch_place.cc
index 4e712f6d..f35cb6fe 100644
--- a/dummy/arch_place.cc
+++ b/dummy/arch_place.cc
@@ -21,8 +21,13 @@
NEXTPNR_NAMESPACE_BEGIN
-bool isValidBelForCell(Context *ctx, CellInfo *cell, BelId bel) { return true; }
+PlaceValidityChecker::PlaceValidityChecker(Context *ctx) {}
-bool isBelLocationValid(Context *ctx, BelId bel) { return true; }
+bool PlaceValidityChecker::isValidBelForCell(CellInfo *cell, BelId bel)
+{
+ return true;
+}
+
+bool PlaceValidityChecker::isBelLocationValid(BelId bel) { return true; }
NEXTPNR_NAMESPACE_END