mirror of https://github.com/YosysHQ/nextpnr.git
16 lines
176 B
C++
16 lines
176 B
C++
|
|
#include "database.h"
|
||
|
|
|
||
|
|
Chip::Chip(std::string)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
ObjRange Chip::getBels() const
|
||
|
|
{
|
||
|
|
return ObjRange();
|
||
|
|
}
|
||
|
|
|
||
|
|
IdString Chip::getObjName(ObjId obj) const
|
||
|
|
{
|
||
|
|
return "*unknown*";
|
||
|
|
}
|