1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-04-13 07:34:06 +00:00
Files
YosysHQ.nextpnr/database.cc
Clifford Wolf 75ae343e1f Database API refactoring
Signed-off-by: Clifford Wolf <clifford@clifford.at>
2018-05-26 10:36:33 +02:00

16 lines
173 B
C++

#include "database.h"
Chip::Chip(ChipArgs)
{
}
BelRange Chip::getBels() const
{
return BelRange();
}
IdString Chip::getBelName(BelId bel) const
{
return "*unknown*";
}