aboutsummaryrefslogtreecommitdiffstats
path: root/generic/arch.cc
diff options
context:
space:
mode:
Diffstat (limited to 'generic/arch.cc')
-rw-r--r--generic/arch.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/generic/arch.cc b/generic/arch.cc
index b82d8ce6..2282b2b8 100644
--- a/generic/arch.cc
+++ b/generic/arch.cc
@@ -19,6 +19,7 @@
#include <math.h>
#include "nextpnr.h"
+#include "placer1.h"
#include "router1.h"
NEXTPNR_NAMESPACE_BEGIN
@@ -316,6 +317,11 @@ delay_t Arch::estimateDelay(WireId src, WireId dst) const
// ---------------------------------------------------------------
+bool Arch::place()
+{
+ return placer1(getCtx());
+}
+
bool Arch::route()
{
return router1(getCtx());