Axi4BaseRChannelInterface constructor

Axi4BaseRChannelInterface({
  1. int idWidth = 4,
  2. int userWidth = 32,
  3. int dataWidth = 64,
  4. bool useLast = true,
  5. int respWidth = 2,
})

Constructor.

Implementation

Axi4BaseRChannelInterface({
  super.idWidth = 4,
  super.userWidth = 32,
  super.dataWidth = 64,
  super.useLast = true,
  this.respWidth = 2,
}) : super(prefix: 'R', main: false) {
  setPorts([
    if (respWidth > 0) Logic.port('RRESP', respWidth),
  ], [
    PairDirection.fromConsumer,
  ]);
}