aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/pybindings.cc
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 /ice40/pybindings.cc
parentd3f19cc27ea4634a64821688e9adec6046f4d7de (diff)
parentf07682f515a7f4ddccf24e40c802f79feba7bed8 (diff)
downloadnextpnr-a04436e19b80bc3d7e308cae2134c98b7a7d6473.tar.gz
nextpnr-a04436e19b80bc3d7e308cae2134c98b7a7d6473.tar.bz2
nextpnr-a04436e19b80bc3d7e308cae2134c98b7a7d6473.zip
Merge branch 'chip-api-refactor'
Diffstat (limited to 'ice40/pybindings.cc')
-rw-r--r--ice40/pybindings.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/ice40/pybindings.cc b/ice40/pybindings.cc
index 2dd558d1..dc13f849 100644
--- a/ice40/pybindings.cc
+++ b/ice40/pybindings.cc
@@ -52,6 +52,9 @@ void arch_wrap_python() {
.def("getBels", &Chip::getBels)
.def("getWires", &Chip::getWires);
- WRAP_RANGE(AllWire);
-
+ WRAP_RANGE(Bel);
+ WRAP_RANGE(BelPin);
+ WRAP_RANGE(Wire);
+ WRAP_RANGE(AllPip);
+ WRAP_RANGE(Pip);
}