aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-08-06 21:25:30 +0200
committerGitHub <noreply@github.com>2018-08-06 21:25:30 +0200
commit88d2c49440c952a097107b6299fd09034532a8db (patch)
tree1729562bd277e25e15fa328900af210bf393968b /docs
parent0b1c67cad348d0470d81aa6d6e72b25a4972f525 (diff)
parent9addcac09cd9e95a1078b938c92290c453e53160 (diff)
downloadnextpnr-88d2c49440c952a097107b6299fd09034532a8db.tar.gz
nextpnr-88d2c49440c952a097107b6299fd09034532a8db.tar.bz2
nextpnr-88d2c49440c952a097107b6299fd09034532a8db.zip
Merge pull request #40 from eddiehung/fix_budget_overrides
Fix budget overrides
Diffstat (limited to 'docs')
-rw-r--r--docs/archapi.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/archapi.md b/docs/archapi.md
index 79562fe6..222b9f78 100644
--- a/docs/archapi.md
+++ b/docs/archapi.md
@@ -402,9 +402,9 @@ Convert an `delay_t` to an actual real-world delay in nanoseconds.
Convert a `delay_t` to an integer for checksum calculations.
-### delay\_t getBudgetOverride(const NetInfo \*net\_info, const PortRef &sink, delay\_t budget) const
+### bool getBudgetOverride(const NetInfo \*net\_info, const PortRef &sink, delay\_t &budget) const
-Overwrite or modify the timing budget for a given arc. Returns the new budget.
+Overwrite or modify (in-place) the timing budget for a given arc. Returns a bool to indicate whether this was done.
Flow Methods
------------