diff options
| author | Clifford Wolf <clifford@clifford.at> | 2018-05-26 10:36:33 +0200 | 
|---|---|---|
| committer | Clifford Wolf <clifford@clifford.at> | 2018-05-26 10:36:33 +0200 | 
| commit | 75ae343e1f2ff1747726385854ae6be56be7a830 (patch) | |
| tree | 7d9cb97d907baede98669ab7b5f12a626631f87a /demo.cc | |
| parent | 22558704460b19425d28cc91b2565c7964ed7a19 (diff) | |
| download | nextpnr-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.cc | 4 | 
1 files changed, 2 insertions, 2 deletions
@@ -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;  }  | 
