diff options
author | gatecat <gatecat@ds0.me> | 2021-03-22 18:31:48 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-22 18:31:48 +0000 |
commit | e8d36bf5bdda84503d5c796b933b1c986a277bf5 (patch) | |
tree | 18934e6784c4bb0b4a083389e86c78f45c8a2cb1 /common/arch_pybindings_shared.h | |
parent | f6ae068cb205527d63d93e5b3581b85a22f90f34 (diff) | |
parent | 4cd74bba2c010e4d714ec72fe11128069ea0495a (diff) | |
download | nextpnr-e8d36bf5bdda84503d5c796b933b1c986a277bf5.tar.gz nextpnr-e8d36bf5bdda84503d5c796b933b1c986a277bf5.tar.bz2 nextpnr-e8d36bf5bdda84503d5c796b933b1c986a277bf5.zip |
Merge pull request #634 from litghost/add_get_bel_pin_type
Add getBelPinType to Python interface.
Diffstat (limited to 'common/arch_pybindings_shared.h')
-rw-r--r-- | common/arch_pybindings_shared.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/arch_pybindings_shared.h b/common/arch_pybindings_shared.h index 81469df3..ef355a54 100644 --- a/common/arch_pybindings_shared.h +++ b/common/arch_pybindings_shared.h @@ -60,6 +60,8 @@ fn_wrapper_0a<Context, decltype(&Context::getBels), &Context::getBels, wrap_cont fn_wrapper_2a<Context, decltype(&Context::getBelPinWire), &Context::getBelPinWire, conv_to_str<WireId>, conv_from_str<BelId>, conv_from_str<IdString>>::def_wrap(ctx_cls, "getBelPinWire"); +fn_wrapper_2a<Context, decltype(&Context::getBelPinType), &Context::getBelPinType, pass_through<PortType>, + conv_from_str<BelId>, conv_from_str<IdString>>::def_wrap(ctx_cls, "getBelPinType"); fn_wrapper_1a<Context, decltype(&Context::getWireBelPins), &Context::getWireBelPins, wrap_context<BelPinRange>, conv_from_str<WireId>>::def_wrap(ctx_cls, "getWireBelPins"); |