aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-06-06 16:02:01 +0200
committerClifford Wolf <clifford@clifford.at>2018-06-06 16:02:01 +0200
commita04436e19b80bc3d7e308cae2134c98b7a7d6473 (patch)
tree5252c8a83dd229e0e36da3062c4757be7aa71820 /common
parentd3f19cc27ea4634a64821688e9adec6046f4d7de (diff)
parentf07682f515a7f4ddccf24e40c802f79feba7bed8 (diff)
downloadnextpnr-a04436e19b80bc3d7e308cae2134c98b7a7d6473.tar.gz
nextpnr-a04436e19b80bc3d7e308cae2134c98b7a7d6473.tar.bz2
nextpnr-a04436e19b80bc3d7e308cae2134c98b7a7d6473.zip
Merge branch 'chip-api-refactor'
Diffstat (limited to 'common')
-rw-r--r--common/design.h1
-rw-r--r--common/pybindings.cc5
2 files changed, 1 insertions, 5 deletions
diff --git a/common/design.h b/common/design.h
index 3e4091c3..4ff28855 100644
--- a/common/design.h
+++ b/common/design.h
@@ -21,6 +21,7 @@
#define DESIGN_H
#include <stdint.h>
+#include <assert.h>
#include <vector>
#include <string>
#include <unordered_set>
diff --git a/common/pybindings.cc b/common/pybindings.cc
index 4986c549..556e838e 100644
--- a/common/pybindings.cc
+++ b/common/pybindings.cc
@@ -36,11 +36,6 @@
void arch_wrap_python();
BOOST_PYTHON_MODULE (MODULE_NAME) {
- // From Chip.h
- WRAP_RANGE(Bel);
- WRAP_RANGE(WireDelay);
- WRAP_RANGE(BelPin);
-
arch_wrap_python();
}