diff options
author | David Shah <dave@ds0.me> | 2020-02-03 11:38:15 +0000 |
---|---|---|
committer | David Shah <dave@ds0.me> | 2020-02-03 11:38:31 +0000 |
commit | ad1cc12df1aa13c1618d85c07805a4987e0e041f (patch) | |
tree | 3cb1a7fadeb1e338d2aa87cdaa189fd24956eb0c /ecp5 | |
parent | 5e1aac67db4bec579ca9e8075aa32e4183d1004f (diff) | |
download | nextpnr-ad1cc12df1aa13c1618d85c07805a4987e0e041f.tar.gz nextpnr-ad1cc12df1aa13c1618d85c07805a4987e0e041f.tar.bz2 nextpnr-ad1cc12df1aa13c1618d85c07805a4987e0e041f.zip |
router2: Make magic numbers configurable
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'ecp5')
-rw-r--r-- | ecp5/arch.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ecp5/arch.cc b/ecp5/arch.cc index a10be174..52cfc187 100644 --- a/ecp5/arch.cc +++ b/ecp5/arch.cc @@ -625,7 +625,7 @@ bool Arch::route() route_ecp5_globals(getCtx()); assignArchInfo(); assign_budget(getCtx(), true); - router2(getCtx()); + router2(getCtx(), Router2Cfg(getCtx())); bool result = router1(getCtx(), Router1Cfg(getCtx())); #if 0 std::vector<std::pair<WireId, int>> fanout_vector; |