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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user