diff options
Diffstat (limited to 'generic')
-rw-r--r-- | generic/arch.h | 11 | ||||
-rw-r--r-- | generic/archdefs.h | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/generic/arch.h b/generic/arch.h index 92260ce0..50d2731c 100644 --- a/generic/arch.h +++ b/generic/arch.h @@ -362,6 +362,17 @@ struct Arch : ArchAPI<ArchRanges> bool isValidBelForCellType(IdString cell_type, BelId bel) const override { return cell_type == getBelType(bel); } bool isBelLocationValid(BelId bel) const override; + // TODO + CellInfo *getClusterRootCell(ClusterId cluster) const override { NPNR_ASSERT_FALSE("unimplemented"); } + ArcBounds getClusterBounds(ClusterId cluster) const override { NPNR_ASSERT_FALSE("unimplemented"); } + Loc getClusterOffset(const CellInfo *cell) const override { NPNR_ASSERT_FALSE("unimplemented"); } + bool isClusterStrict(const CellInfo *cell) const override { NPNR_ASSERT_FALSE("unimplemented"); } + bool getClusterPlacement(ClusterId cluster, BelId root_bel, + std::vector<std::pair<CellInfo *, BelId>> &placement) const override + { + NPNR_ASSERT_FALSE("unimplemented"); + } + static const std::string defaultPlacer; static const std::vector<std::string> availablePlacers; static const std::string defaultRouter; diff --git a/generic/archdefs.h b/generic/archdefs.h index bdd97dde..0489ab04 100644 --- a/generic/archdefs.h +++ b/generic/archdefs.h @@ -34,6 +34,7 @@ typedef IdStringList PipId; typedef IdStringList GroupId; typedef IdStringList DecalId; typedef IdString BelBucketId; +typedef IdString ClusterId; struct ArchNetInfo { |