aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5/arch.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-08-08 19:35:13 +0200
committerClifford Wolf <clifford@clifford.at>2018-08-08 19:35:13 +0200
commitf6189e4677c7bdaeaa5b9b796a67d750e6c7d49d (patch)
treea13673a636ddbea3b5fd5585e3bb109b56b69435 /ecp5/arch.cc
parenta3ae3f97913c291dbe36a49b1a20388156943abc (diff)
parentcd4e761bb799ca99f02d3aa177961af28a93f2d8 (diff)
downloadnextpnr-f6189e4677c7bdaeaa5b9b796a67d750e6c7d49d.tar.gz
nextpnr-f6189e4677c7bdaeaa5b9b796a67d750e6c7d49d.tar.bz2
nextpnr-f6189e4677c7bdaeaa5b9b796a67d750e6c7d49d.zip
Merge branch 'master' of github.com:YosysHQ/nextpnr into constids
Diffstat (limited to 'ecp5/arch.cc')
-rw-r--r--ecp5/arch.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/ecp5/arch.cc b/ecp5/arch.cc
index 23db8ae5..4358fdaf 100644
--- a/ecp5/arch.cc
+++ b/ecp5/arch.cc
@@ -330,7 +330,6 @@ BelId Arch::getPioByFunctionName(const std::string &name) const
}
std::vector<IdString> Arch::getBelPins(BelId bel) const
-
{
std::vector<IdString> ret;
NPNR_ASSERT(bel != BelId());
@@ -454,9 +453,10 @@ bool Arch::getCellDelay(const CellInfo *cell, IdString fromPort, IdString toPort
return false;
}
-IdString Arch::getPortClock(const CellInfo *cell, IdString port) const { return IdString(); }
-
-bool Arch::isClockPort(const CellInfo *cell, IdString port) const { return false; }
+TimingPortClass Arch::getPortTimingClass(const CellInfo *cell, IdString port, IdString &clockPort) const
+{
+ return TMG_IGNORE;
+}
std::vector<std::pair<std::string, std::string>> Arch::getTilesAtLocation(int row, int col)
{