Axi4LiteReadCluster constructor

Axi4LiteReadCluster({
  1. int addrWidth = 32,
  2. int dataWidth = 64,
  3. bool useLast = true,
})

Constructor.

Implementation

Axi4LiteReadCluster({
  int addrWidth = 32,
  int dataWidth = 64,
  bool useLast = true,
}) : super(
          arIntf: Axi4LiteArChannelInterface(addrWidth: addrWidth),
          rIntf: Axi4LiteRChannelInterface(
              dataWidth: dataWidth, useLast: useLast));