intel / rohd

The Rapid Open Hardware Development (ROHD) framework is a framework for describing and verifying hardware in the Dart programming language.
https://intel.github.io/rohd-website
BSD 3-Clause "New" or "Revised" License
370 stars 65 forks source link

`PairInterface` does not accept `LogicArray`s (or anything besides `Port`) #476

Closed mkorbel1 closed 3 months ago

mkorbel1 commented 5 months ago

Describe the bug

The PairInterface is supposed to be easier to declare ports via the constructor arguments, but it accepts List<Port> which notably does not allow for LogicArrays.

To Reproduce

No response

Expected behavior

The argument should be List<Logic>

Actual behavior

No response

Additional: Dart SDK info

No response

Additional: pubspec.yaml

No response

Additional: Context

No response