aboutsummaryrefslogtreecommitdiffstats
path: root/common/timing.h
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-06-20 11:53:49 +0200
committerDavid Shah <davey1576@gmail.com>2018-06-20 11:53:49 +0200
commit2a41211ce1955a44ca363ba6000c38feb3883e32 (patch)
tree645f3b0c4c0d0861d51808619872f7c7e87f02c6 /common/timing.h
parent1436ae21a2d9a214f7585deb2f038ff87ce4862c (diff)
downloadnextpnr-2a41211ce1955a44ca363ba6000c38feb3883e32.tar.gz
nextpnr-2a41211ce1955a44ca363ba6000c38feb3883e32.tar.bz2
nextpnr-2a41211ce1955a44ca363ba6000c38feb3883e32.zip
Another stub delay calculation function
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'common/timing.h')
-rw-r--r--common/timing.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/common/timing.h b/common/timing.h
index da0cdd9c..03ae048d 100644
--- a/common/timing.h
+++ b/common/timing.h
@@ -22,7 +22,11 @@
#include "nextpnr.h"
+NEXTPNR_NAMESPACE_BEGIN
+
// Assign "budget" values for all user ports in the design
void assign_budget(Context *ctx, float default_clock = 12e6);
-#endif TIMING_H
+NEXTPNR_NAMESPACE_END
+
+#endif