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 /ecp5/cells.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 'ecp5/cells.h')
-rw-r--r-- | ecp5/cells.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ecp5/cells.h b/ecp5/cells.h index b0c74ca9..d2ea5490 100644 --- a/ecp5/cells.h +++ b/ecp5/cells.h @@ -48,6 +48,7 @@ inline bool is_l6mux(const BaseCtx *ctx, const CellInfo *cell) { return cell->ty void ff_to_slice(Context *ctx, CellInfo *ff, CellInfo *lc, int index, bool driven_by_lut); void lut_to_slice(Context *ctx, CellInfo *lut, CellInfo *lc, int index); +void ccu2c_to_slice(Context *ctx, CellInfo *ccu, CellInfo *lc); NEXTPNR_NAMESPACE_END |