Axi4LiteArChannelInterface constructor

Axi4LiteArChannelInterface({
  1. int addrWidth = 32,
})

Construct a new instance of an AXI4 interface.

Default values in constructor are from official spec.

Implementation

Axi4LiteArChannelInterface({
  super.addrWidth = 32,
}) : super(
        userWidth: 0,
        idWidth: 0,
        lenWidth: 0,
        useLock: false,
        sizeWidth: 0,
        burstWidth: 0,
        cacheWidth: 0,
        protWidth: 3,
        qosWidth: 0,
        regionWidth: 0,
      );