aboutsummaryrefslogtreecommitdiffstats
path: root/generic/arch_pybindings.cc
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2022-02-04 20:48:41 +0000
committerGitHub <noreply@github.com>2022-02-04 20:48:41 +0000
commit4b72f02255df435f4ed1c5eaaab03434aa8168fe (patch)
tree09853ccc550aa0d641b8f19de5a7824631674de6 /generic/arch_pybindings.cc
parent69625564ca2659ca0fbbd3d85e75b70182febf6f (diff)
parent5ef5c33e9e964a176040c829adc965ec46331d77 (diff)
downloadnextpnr-4b72f02255df435f4ed1c5eaaab03434aa8168fe.tar.gz
nextpnr-4b72f02255df435f4ed1c5eaaab03434aa8168fe.tar.bz2
nextpnr-4b72f02255df435f4ed1c5eaaab03434aa8168fe.zip
Merge pull request #907 from YosysHQ/gatecat/generic-pips-py-fix
generic: Add missing Pip vector binding
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