aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5/cells.h
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-07-17 15:44:36 +0200
committerDavid Shah <davey1576@gmail.com>2018-07-17 15:44:36 +0200
commitb52269bc198eb8fcc647100d4891379b7fd7346a (patch)
tree2b5a6319a44e6b4903be310755c4bfd4983eb0ab /ecp5/cells.h
parentc0567c0d30e2649d4f2b6d122caf43b28e0e80ce (diff)
downloadnextpnr-b52269bc198eb8fcc647100d4891379b7fd7346a.tar.gz
nextpnr-b52269bc198eb8fcc647100d4891379b7fd7346a.tar.bz2
nextpnr-b52269bc198eb8fcc647100d4891379b7fd7346a.zip
ecp5: LUT packer
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'ecp5/cells.h')
-rw-r--r--ecp5/cells.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ecp5/cells.h b/ecp5/cells.h
index d8d17061..b0c74ca9 100644
--- a/ecp5/cells.h
+++ b/ecp5/cells.h
@@ -46,7 +46,8 @@ inline bool is_pfumx(const BaseCtx *ctx, const CellInfo *cell) { return cell->ty
inline bool is_l6mux(const BaseCtx *ctx, const CellInfo *cell) { return cell->type == ctx->id("L6MUX21"); }
-void ff_to_lc(Context *ctx, CellInfo *ff, CellInfo *lc, int index, bool driven_by_lut);
+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);
NEXTPNR_NAMESPACE_END