aboutsummaryrefslogtreecommitdiffstats
path: root/dummy/main.cc
blob: 01050d24fc4633c8460535ed079ec0691efd2c33 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "database.h"

int main()
{
	Design design(ChipArgs{});

	for (auto bel : design.chip.getBels())
		printf("%s\n", design.chip.getBelName(bel).c_str());

	return 0;
}