Ace4LiteReadCluster constructor

Ace4LiteReadCluster({
  1. int idWidth = 4,
  2. int addrWidth = 32,
  3. int lenWidth = 8,
  4. int userWidth = 32,
  5. bool useLock = false,
  6. int dataWidth = 64,
  7. bool useLast = true,
  8. int domainWidth = 1,
  9. bool useBar = true,
})

Constructor.

Implementation

Ace4LiteReadCluster({
  int idWidth = 4,
  int addrWidth = 32,
  int lenWidth = 8,
  int userWidth = 32,
  bool useLock = false,
  int dataWidth = 64,
  bool useLast = true,
  int domainWidth = 1,
  bool useBar = true,
}) : super(
          arIntf: Ace4LiteArChannelInterface(
              idWidth: idWidth,
              addrWidth: addrWidth,
              lenWidth: lenWidth,
              useLock: useLock,
              userWidth: userWidth,
              domainWidth: domainWidth,
              useBar: useBar),
          rIntf: Ace4LiteRChannelInterface(
              idWidth: idWidth,
              userWidth: userWidth,
              dataWidth: dataWidth,
              useLast: useLast));