ecp5: Dummy timing entry for BRAM

Signed-off-by: David Shah <dave@ds0.me>
This commit is contained in:
David Shah 2018-10-05 11:35:37 +01:00
parent 48f08e6d39
commit 19f828c91c

View File

@ -582,6 +582,9 @@ TimingPortClass Arch::getPortTimingClass(const CellInfo *cell, IdString port, Id
if (port == id_CLKO)
return TMG_COMB_OUTPUT;
return TMG_IGNORE;
} else if (cell->type == id_DP16KD) {
// FIXME
return TMG_IGNORE;
} else {
NPNR_ASSERT_FALSE_STR("no timing data for cell type '" + cell->type.str(this) + "'");
}