aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5/cells.h
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2018-11-16 17:27:23 +0000
committerDavid Shah <dave@ds0.me>2018-11-16 17:27:23 +0000
commit3ae8b86003eb6b378c10ddd0f602c40abe28552b (patch)
treead14f4c2c3d923a3ffc5f032922d6f5cc1d90d82 /ecp5/cells.h
parent72b53016c01d7fa2028dd84b356efeed80e78330 (diff)
downloadnextpnr-3ae8b86003eb6b378c10ddd0f602c40abe28552b.tar.gz
nextpnr-3ae8b86003eb6b378c10ddd0f602c40abe28552b.tar.bz2
nextpnr-3ae8b86003eb6b378c10ddd0f602c40abe28552b.zip
ecp5: Adding mux support up to LUT6
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'ecp5/cells.h')
-rw-r--r--ecp5/cells.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ecp5/cells.h b/ecp5/cells.h
index 9c2ff3cf..dcef99e3 100644
--- a/ecp5/cells.h
+++ b/ecp5/cells.h
@@ -36,7 +36,7 @@ inline bool is_ff(const BaseCtx *ctx, const CellInfo *cell) { return cell->type
inline bool is_carry(const BaseCtx *ctx, const CellInfo *cell) { return cell->type == ctx->id("CCU2C"); }
-inline bool is_lc(const BaseCtx *ctx, const CellInfo *cell) { return cell->type == ctx->id("TRELLIS_LC"); }
+inline bool is_lc(const BaseCtx *ctx, const CellInfo *cell) { return cell->type == ctx->id("TRELLIS_SLICE"); }
inline bool is_trellis_io(const BaseCtx *ctx, const CellInfo *cell) { return cell->type == ctx->id("TRELLIS_IO"); }