diff options
author | David Shah <davey1576@gmail.com> | 2018-10-01 18:38:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-01 18:38:07 +0100 |
commit | 2298c89c7bbdf44ae7f519c9e27845a409c728b3 (patch) | |
tree | 6a7ca8ade2ab611ed8b0f1188a69aa03ef53e5a9 /common/design_utils.h | |
parent | ea03aafc26f8d7c6cde75b9054a508470f91965b (diff) | |
parent | 931c78b1bbb6acbc4f9c8058ed450bf9464cb603 (diff) | |
download | nextpnr-2298c89c7bbdf44ae7f519c9e27845a409c728b3.tar.gz nextpnr-2298c89c7bbdf44ae7f519c9e27845a409c728b3.tar.bz2 nextpnr-2298c89c7bbdf44ae7f519c9e27845a409c728b3.zip |
Merge pull request #82 from YosysHQ/ecp5_carry
Adding ECP5 carry support
Diffstat (limited to 'common/design_utils.h')
-rw-r--r-- | common/design_utils.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/design_utils.h b/common/design_utils.h index 95975179..ccf2463b 100644 --- a/common/design_utils.h +++ b/common/design_utils.h @@ -82,6 +82,9 @@ template <typename F1> CellInfo *net_driven_by(const Context *ctx, const NetInfo } } +// Connect a net to a port +void connect_port(const Context *ctx, NetInfo *net, CellInfo *cell, IdString port_name); + void print_utilisation(const Context *ctx); NEXTPNR_NAMESPACE_END |