diff options
author | David Shah <davey1576@gmail.com> | 2018-09-30 17:42:47 +0100 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2018-09-30 17:42:47 +0100 |
commit | 9218d2e56b5d06a57f80e7270b1538d134f8a6fa (patch) | |
tree | fdb3c07512b31734d5f7b04c50c4b2122ff7624a /ecp5/cells.cc | |
parent | fef29d87626d9030f54afafa92db744ea9f21741 (diff) | |
download | nextpnr-9218d2e56b5d06a57f80e7270b1538d134f8a6fa.tar.gz nextpnr-9218d2e56b5d06a57f80e7270b1538d134f8a6fa.tar.bz2 nextpnr-9218d2e56b5d06a57f80e7270b1538d134f8a6fa.zip |
ecp5: Relative placement and bitstream gen for carries
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'ecp5/cells.cc')
-rw-r--r-- | ecp5/cells.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ecp5/cells.cc b/ecp5/cells.cc index 4a83bb30..7e101ab2 100644 --- a/ecp5/cells.cc +++ b/ecp5/cells.cc @@ -213,7 +213,7 @@ void lut_to_slice(Context *ctx, CellInfo *lut, CellInfo *lc, int index) void ccu2c_to_slice(Context *ctx, CellInfo *ccu, CellInfo *lc) { - lc->params[ctx->id("MODE")] = "CCU2C"; + lc->params[ctx->id("MODE")] = "CCU2"; lc->params[ctx->id("LUT0_INITVAL")] = str_or_default(ccu->params, ctx->id("INIT0"), "0"); lc->params[ctx->id("LUT1_INITVAL")] = str_or_default(ccu->params, ctx->id("INIT1"), "0"); |