aboutsummaryrefslogtreecommitdiffstats
path: root/demo.cc
diff options
context:
space:
mode:
Diffstat (limited to 'demo.cc')
-rw-r--r--demo.cc13
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;
-}