Axi4LiteRChannelInterface constructor

Axi4LiteRChannelInterface({
  1. int dataWidth = 64,
  2. bool useLast = true,
})

Construct a new instance of an AXI4 interface.

Default values in constructor are from official spec.

Implementation

Axi4LiteRChannelInterface({
  super.dataWidth = 64,
  super.useLast = true,
}) : super(
        idWidth: 0,
        userWidth: 0,
        respWidth: 2,
      );