diff options
Diffstat (limited to 'ecp5/arch.cc')
-rw-r--r-- | ecp5/arch.cc | 25 |
1 files changed, 6 insertions, 19 deletions
diff --git a/ecp5/arch.cc b/ecp5/arch.cc index 7217af78..6d320996 100644 --- a/ecp5/arch.cc +++ b/ecp5/arch.cc @@ -288,33 +288,20 @@ delay_t Arch::estimateDelay(WireId src, WireId dst) const // ----------------------------------------------------------------------- -std::vector<GraphicElement> Arch::getFrameGraphics() const +std::vector<GraphicElement> Arch::getDecalGraphics(DecalId decalId) const { std::vector<GraphicElement> ret; - + // FIXME return ret; } -std::vector<GraphicElement> Arch::getBelGraphics(BelId bel) const -{ - std::vector<GraphicElement> ret; +DecalXY Arch::getFrameDecal() const { return {}; } - return ret; -} +DecalXY Arch::getBelDecal(BelId bel) const { return {}; } -std::vector<GraphicElement> Arch::getWireGraphics(WireId wire) const -{ - std::vector<GraphicElement> ret; - // FIXME - return ret; -} +DecalXY Arch::getWireDecal(WireId wire) const { return {}; } -std::vector<GraphicElement> Arch::getPipGraphics(PipId pip) const -{ - std::vector<GraphicElement> ret; - // FIXME - return ret; -}; +DecalXY Arch::getPipDecal(PipId pip) const { return {}; }; // ----------------------------------------------------------------------- |