aboutsummaryrefslogtreecommitdiffstats
path: root/nexus/arch_pybindings.h
diff options
context:
space:
mode:
authorD. Shah <dave@ds0.me>2021-02-05 11:49:31 +0000
committerD. Shah <dave@ds0.me>2021-02-05 19:19:17 +0000
commitf5d2e245e172e2481639dedc3f9b6870f069742a (patch)
treeb48021373a3f44dbc0384bb56bd2951ca7fe7971 /nexus/arch_pybindings.h
parent59c3db46cabf9914b01451ac724ba3da33fe6f42 (diff)
downloadnextpnr-f5d2e245e172e2481639dedc3f9b6870f069742a.tar.gz
nextpnr-f5d2e245e172e2481639dedc3f9b6870f069742a.tar.bz2
nextpnr-f5d2e245e172e2481639dedc3f9b6870f069742a.zip
nexus: Switch to BaseArch
Signed-off-by: D. Shah <dave@ds0.me>
Diffstat (limited to 'nexus/arch_pybindings.h')
-rw-r--r--nexus/arch_pybindings.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/nexus/arch_pybindings.h b/nexus/arch_pybindings.h
index dd41ce32..b94449ad 100644
--- a/nexus/arch_pybindings.h
+++ b/nexus/arch_pybindings.h
@@ -76,18 +76,6 @@ 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)