Ace4ArChannelInterface constructor

Ace4ArChannelInterface({
  1. int idWidth = 4,
  2. int addrWidth = 32,
  3. int lenWidth = 8,
  4. int userWidth = 32,
  5. bool useLock = true,
  6. int domainWidth = 1,
  7. bool useBar = true,
})

Constructor.

Should match regular AXI4 but with DOMAIN and BAR.

Implementation

Ace4ArChannelInterface({
  super.idWidth = 4,
  super.addrWidth = 32,
  super.lenWidth = 8,
  super.userWidth = 32,
  super.useLock = true,
  this.domainWidth = 1,
  this.useBar = true,
}) {
  makeAcePorts();
}