diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-05-26 10:47:35 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-05-26 10:47:35 +0200 |
commit | 5e48758b30caf8ecc91c3c416326a093b47a2e2d (patch) | |
tree | 63109a9e53193f1b7ad47056be391fab1aa50c3b /demo.cc | |
parent | 75ae343e1f2ff1747726385854ae6be56be7a830 (diff) | |
download | nextpnr-5e48758b30caf8ecc91c3c416326a093b47a2e2d.tar.gz nextpnr-5e48758b30caf8ecc91c3c416326a093b47a2e2d.tar.bz2 nextpnr-5e48758b30caf8ecc91c3c416326a093b47a2e2d.zip |
Directory structure
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'demo.cc')
-rw-r--r-- | demo.cc | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/demo.cc b/demo.cc deleted file mode 100644 index 665724b0..00000000 --- a/demo.cc +++ /dev/null @@ -1,13 +0,0 @@ -// clang -o demo -Wall -std=c++11 demo.cc database.cc -lstdc++ - -#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; -} |