diff options
Diffstat (limited to 'fpga_interchange/arch_pybindings.h')
-rw-r--r-- | fpga_interchange/arch_pybindings.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/fpga_interchange/arch_pybindings.h b/fpga_interchange/arch_pybindings.h index 0ce37906..b74a41a5 100644 --- a/fpga_interchange/arch_pybindings.h +++ b/fpga_interchange/arch_pybindings.h @@ -75,6 +75,18 @@ template <> struct string_converter<PipId> } }; +template <> struct string_converter<BelBucketId> +{ + BelBucketId from_str(Context *ctx, std::string name) { return ctx->getBelBucketByName(ctx->id(name)); } + + std::string to_str(Context *ctx, BelBucketId id) + { + if (id == BelBucketId()) + throw bad_wrap(); + return ctx->getBelBucketName(id).str(ctx); + } +}; + template <> struct string_converter<BelPin> { BelPin from_str(Context *ctx, std::string name) |