aboutsummaryrefslogtreecommitdiffstats
path: root/generic/arch_pybindings.cc
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2022-02-04 15:54:41 +0000
committergatecat <gatecat@ds0.me>2022-02-04 15:54:41 +0000
commit5ef5c33e9e964a176040c829adc965ec46331d77 (patch)
tree1fb6dbc7721986d3e6431d2aed15f75b7dedde31 /generic/arch_pybindings.cc
parent5007cd3603d71f10924bb97acfe42d50d2ebcbd4 (diff)
downloadnextpnr-5ef5c33e9e964a176040c829adc965ec46331d77.tar.gz
nextpnr-5ef5c33e9e964a176040c829adc965ec46331d77.tar.bz2
nextpnr-5ef5c33e9e964a176040c829adc965ec46331d77.zip
generic: Add missing Pip vector binding
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'generic/arch_pybindings.cc')
-rw-r--r--generic/arch_pybindings.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/generic/arch_pybindings.cc b/generic/arch_pybindings.cc
index 92c78252..6d3d981c 100644
--- a/generic/arch_pybindings.cc
+++ b/generic/arch_pybindings.cc
@@ -266,6 +266,7 @@ void arch_wrap_python(py::module &m)
WRAP_MAP_UPTR(m, NetMap, "IdNetMap");
WRAP_MAP(m, HierarchyMap, wrap_context<HierarchicalCell &>, "HierarchyMap");
WRAP_VECTOR(m, const std::vector<IdString>, conv_to_str<IdString>);
+ WRAP_VECTOR(m, const std::vector<PipId>, conv_to_str<PipId>);
}
NEXTPNR_NAMESPACE_END