aboutsummaryrefslogtreecommitdiffstats
path: root/generic/arch.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-08-02 15:01:52 +0200
committerGitHub <noreply@github.com>2018-08-02 15:01:52 +0200
commit0208897aa3b5bbe91810e728c825566f87c6fa0c (patch)
tree8ac42adcfbc7020bf83f1e0e45ceb152ebe57fd0 /generic/arch.cc
parentfb06fd4653c8d990a0f19e10fc898402a1bae378 (diff)
parent2b0bf3f9f80ba79c677505717d008bc00f1a6124 (diff)
downloadnextpnr-0208897aa3b5bbe91810e728c825566f87c6fa0c.tar.gz
nextpnr-0208897aa3b5bbe91810e728c825566f87c6fa0c.tar.bz2
nextpnr-0208897aa3b5bbe91810e728c825566f87c6fa0c.zip
Merge pull request #16 from YosysHQ/reroute
Add cleanup reroute passes to router1, improve reuse of wires
Diffstat (limited to 'generic/arch.cc')
-rw-r--r--generic/arch.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/arch.cc b/generic/arch.cc
index 66fbd1ff..cff638df 100644
--- a/generic/arch.cc
+++ b/generic/arch.cc
@@ -420,7 +420,7 @@ delay_t getBudgetOverride(const NetInfo *net_info, const PortRef &sink, delay_t
bool Arch::place() { return placer1(getCtx()); }
-bool Arch::route() { return router1(getCtx()); }
+bool Arch::route() { return router1(getCtx(), Router1Cfg()); }
// ---------------------------------------------------------------