aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorZipCPU <dgisselq@ieee.org>2018-06-06 12:21:04 -0400
committerZipCPU <dgisselq@ieee.org>2018-06-06 12:21:04 -0400
commit5e463b8543585e4e1d2d3f80a2e32142015a73dd (patch)
tree4a92d2925ae37a5cc1176c4dfd6c3405b42f2268 /common
parent468ed85280f5a518c4a7b9c9770d2aa0764b3972 (diff)
parentf9bd66e7ac4d52ef4dfe96373450eb46aa195eab (diff)
downloadnextpnr-5e463b8543585e4e1d2d3f80a2e32142015a73dd.tar.gz
nextpnr-5e463b8543585e4e1d2d3f80a2e32142015a73dd.tar.bz2
nextpnr-5e463b8543585e4e1d2d3f80a2e32142015a73dd.zip
Merge branch 'master' into gqtech
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 564d5ce5..314c2fd7 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();
}