diff options
author | YRabbit <rabbit@yrabbit.cyou> | 2022-07-05 19:43:24 +1000 |
---|---|---|
committer | YRabbit <rabbit@yrabbit.cyou> | 2022-07-05 19:43:24 +1000 |
commit | 3364a3b6746c6df62a36e1dd319afaa97259d6ad (patch) | |
tree | fe7e96804ecee6f46ffef4522a1a3bba290fd86a /common/kernel/arch_pybindings_shared.h | |
parent | 5d915a550ba8a825fa29a2cab3851adea20f40fb (diff) | |
parent | 86396c41d64d2583ec1dffca4298e83d927f0762 (diff) | |
download | nextpnr-3364a3b6746c6df62a36e1dd319afaa97259d6ad.tar.gz nextpnr-3364a3b6746c6df62a36e1dd319afaa97259d6ad.tar.bz2 nextpnr-3364a3b6746c6df62a36e1dd319afaa97259d6ad.zip |
Merge branch 'master' into clock-wip
Diffstat (limited to 'common/kernel/arch_pybindings_shared.h')
-rw-r--r-- | common/kernel/arch_pybindings_shared.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/kernel/arch_pybindings_shared.h b/common/kernel/arch_pybindings_shared.h index b3dc0506..bfb58f11 100644 --- a/common/kernel/arch_pybindings_shared.h +++ b/common/kernel/arch_pybindings_shared.h @@ -145,3 +145,9 @@ fn_wrapper_1a<Context, decltype(&Context::getBelsInBucket), &Context::getBelsInB // bool isValidBelForCellType(IdString cell\_type, BelId bel) const fn_wrapper_2a<Context, decltype(&Context::isValidBelForCellType), &Context::isValidBelForCellType, pass_through<bool>, conv_from_str<IdString>, conv_from_str<BelId>>::def_wrap(ctx_cls, "isValidBelForCellType"); + +fn_wrapper_1a<Context, decltype(&Context::getDelayFromNS), &Context::getDelayFromNS, pass_through<delay_t>, + pass_through<double>>::def_wrap(ctx_cls, "getDelayFromNS"); + +fn_wrapper_1a<Context, decltype(&Context::getDelayNS), &Context::getDelayNS, pass_through<double>, + pass_through<delay_t>>::def_wrap(ctx_cls, "getDelayNS");
\ No newline at end of file |