Axi4ResponseChannelInterface constructor
Constructor.
Implementation
Axi4ResponseChannelInterface({
required super.prefix,
super.idWidth = 4,
super.userWidth = 16,
this.respWidth = 2,
}) : super(main: false) {
setPorts([
if (respWidth > 0) Logic.port('${prefix}RESP', respWidth),
], [
PairDirection.fromConsumer,
]);
}