1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-04-27 12:38:40 +00:00

Draw fpga model

This commit is contained in:
Miodrag Milanovic
2018-06-10 19:56:17 +02:00
parent 4bcbe977ab
commit d8d38cd107
3 changed files with 67 additions and 13 deletions

View File

@@ -123,3 +123,27 @@ const vector<PipId> &Chip::getWireAliases(WireId wire) const
static vector<PipId> ret;
return ret;
}
vector<GraphicElement> Chip::getBelGraphics(BelId bel) const
{
static vector<GraphicElement> ret;
return ret;
}
vector<GraphicElement> Chip::getWireGraphics(WireId wire) const
{
static vector<GraphicElement> ret;
return ret;
}
vector<GraphicElement> Chip::getPipGraphics(PipId pip) const
{
static vector<GraphicElement> ret;
return ret;
}
vector<GraphicElement> Chip::getFrameGraphics() const
{
static vector<GraphicElement> ret;
return ret;
}