Skip to content

Commit

Permalink
ice40: Fix Python bindings for pip iterators
Browse files Browse the repository at this point in the history
  • Loading branch information
tarikgraba authored and gatecat committed Jul 3, 2024
1 parent 0639681 commit ba29343
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ice40/arch_pybindings.cc
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ void arch_wrap_python(py::module &m)
readonly_wrapper<BelPin, decltype(&BelPin::bel), &BelPin::bel, conv_to_str<BelId>>::def_wrap(belpin_cls, "bel");
readonly_wrapper<BelPin, decltype(&BelPin::pin), &BelPin::pin, conv_to_str<IdString>>::def_wrap(belpin_cls, "pin");

typedef const PipRange UphillPipRange;
typedef const PipRange DownhillPipRange;
typedef PipRange UphillPipRange;
typedef PipRange DownhillPipRange;

typedef const std::vector<BelBucketId> &BelBucketRange;
typedef const std::vector<BelId> &BelRangeForBelBucket;
Expand Down

0 comments on commit ba29343

Please sign in to comment.