aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/arch.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ice40/arch.cc')
-rw-r--r--ice40/arch.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/ice40/arch.cc b/ice40/arch.cc
index 0bb27d38..1e6b4569 100644
--- a/ice40/arch.cc
+++ b/ice40/arch.cc
@@ -21,6 +21,7 @@
#include <cmath>
#include "log.h"
#include "nextpnr.h"
+#include "placer1.h"
#include "router1.h"
#include "util.h"
#include "gfx.h"
@@ -401,6 +402,11 @@ delay_t Arch::estimateDelay(WireId src, WireId dst) const
// -----------------------------------------------------------------------
+bool Arch::place()
+{
+ return placer1(getCtx());
+}
+
bool Arch::route()
{
return router1(getCtx());