diff options
author | David Shah <davey1576@gmail.com> | 2018-11-15 11:26:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-15 11:26:08 +0000 |
commit | 9472b6d78f68544d430feeae6d75dbd2dc43019d (patch) | |
tree | 0ab6b20c90d4a93cd9e2d0c14bdadb296e159cdc /common/timing.h | |
parent | d3b2065cd7d2470a132c055f4bd88d270e1e8fe1 (diff) | |
parent | 9f9b242cf0a3b587df8f5b0eb542ca7256ca0eb9 (diff) | |
download | nextpnr-9472b6d78f68544d430feeae6d75dbd2dc43019d.tar.gz nextpnr-9472b6d78f68544d430feeae6d75dbd2dc43019d.tar.bz2 nextpnr-9472b6d78f68544d430feeae6d75dbd2dc43019d.zip |
Merge pull request #103 from YosysHQ/timingapi
Timing constraints API, multiple clock domains
Diffstat (limited to 'common/timing.h')
-rw-r--r-- | common/timing.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/timing.h b/common/timing.h index cfb71ae0..1fd76310 100644 --- a/common/timing.h +++ b/common/timing.h @@ -29,7 +29,7 @@ void assign_budget(Context *ctx, bool quiet = false); // Perform timing analysis and print out the fmax, and optionally the // critical path -void timing_analysis(Context *ctx, bool slack_histogram = true, bool print_path = false); +void timing_analysis(Context *ctx, bool slack_histogram = true, bool print_fmax = true, bool print_path = false); NEXTPNR_NAMESPACE_END |