aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5/arch.cc
diff options
context:
space:
mode:
authorEddie Hung <e.hung@imperial.ac.uk>2018-07-26 21:37:19 -0700
committerEddie Hung <e.hung@imperial.ac.uk>2018-07-26 21:37:19 -0700
commit97e546041e109fdade1099b056c7166578314846 (patch)
tree14f1cf4127db713e18839a68a9cfb23b9422fdf3 /ecp5/arch.cc
parent21d46fb633383909609a9f8adbb543ae6e7ed70c (diff)
downloadnextpnr-97e546041e109fdade1099b056c7166578314846.tar.gz
nextpnr-97e546041e109fdade1099b056c7166578314846.tar.bz2
nextpnr-97e546041e109fdade1099b056c7166578314846.zip
Revert "Remove Arch::getBudgetOverride()"
This reverts commit 749dae4ae5b2b719237af5db28e98ff671bae265.
Diffstat (limited to 'ecp5/arch.cc')
-rw-r--r--ecp5/arch.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/ecp5/arch.cc b/ecp5/arch.cc
index 55fe5704..79f65562 100644
--- a/ecp5/arch.cc
+++ b/ecp5/arch.cc
@@ -413,6 +413,8 @@ delay_t Arch::estimateDelay(WireId src, WireId dst) const
return 200 * (abs(src.location.x - dst.location.x) + abs(src.location.y - dst.location.y));
}
+delay_t Arch::getBudgetOverride(const PortRef &pr, delay_t v) const { return v; }
+
// -----------------------------------------------------------------------
bool Arch::place() { return placer1(getCtx()); }