aboutsummaryrefslogtreecommitdiffstats
path: root/demo.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-05-26 10:36:33 +0200
committerClifford Wolf <clifford@clifford.at>2018-05-26 10:36:33 +0200
commit75ae343e1f2ff1747726385854ae6be56be7a830 (patch)
tree7d9cb97d907baede98669ab7b5f12a626631f87a /demo.cc
parent22558704460b19425d28cc91b2565c7964ed7a19 (diff)
downloadnextpnr-75ae343e1f2ff1747726385854ae6be56be7a830.tar.gz
nextpnr-75ae343e1f2ff1747726385854ae6be56be7a830.tar.bz2
nextpnr-75ae343e1f2ff1747726385854ae6be56be7a830.zip
Database API refactoring
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'demo.cc')
-rw-r--r--demo.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/demo.cc b/demo.cc
index 3a5ca0c0..665724b0 100644
--- a/demo.cc
+++ b/demo.cc
@@ -4,10 +4,10 @@
int main()
{
- Design design("default");
+ Design design(ChipArgs{});
for (auto bel : design.chip.getBels())
- printf("%s\n", design.chip.getObjName(bel).c_str());
+ printf("%s\n", design.chip.getBelName(bel).c_str());
return 0;
}