aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5/arch.cc
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-10-24 10:27:15 +0100
committerGitHub <noreply@github.com>2018-10-24 10:27:15 +0100
commitf0e51790037625eabfa6d7aeefd37ff06277dbd0 (patch)
tree6eb4c5f0adba5b6a1cd083c80040a0c31c1d0a58 /ecp5/arch.cc
parentb5faa7ad102b8308eeb0c73a3849909bf4b1b635 (diff)
parent0ac48c6a08ff1ed50fbd6edf4f2351a70695530c (diff)
downloadnextpnr-f0e51790037625eabfa6d7aeefd37ff06277dbd0.tar.gz
nextpnr-f0e51790037625eabfa6d7aeefd37ff06277dbd0.tar.bz2
nextpnr-f0e51790037625eabfa6d7aeefd37ff06277dbd0.zip
Merge pull request #94 from daveshah1/ecp5_dsp
Adding basic multiplier support for ECP5
Diffstat (limited to 'ecp5/arch.cc')
-rw-r--r--ecp5/arch.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/ecp5/arch.cc b/ecp5/arch.cc
index aa9506f9..ab3e15c0 100644
--- a/ecp5/arch.cc
+++ b/ecp5/arch.cc
@@ -647,6 +647,10 @@ TimingPortClass Arch::getPortTimingClass(const CellInfo *cell, IdString port, Id
return (cell->ports.at(port).type == PORT_OUT) ? TMG_REGISTER_OUTPUT : TMG_REGISTER_INPUT;
}
NPNR_ASSERT_FALSE_STR("no timing type for RAM port '" + port.str(this) + "'");
+ } else if (cell->type == id_MULT18X18D) {
+ return TMG_IGNORE; // FIXME
+ } else if (cell->type == id_ALU54B) {
+ return TMG_IGNORE; // FIXME
} else {
NPNR_ASSERT_FALSE_STR("no timing data for cell type '" + cell->type.str(this) + "'");
}