Axi5CrChannelInterface constructor

Axi5CrChannelInterface({
  1. bool debugMixInEnable = false,
  2. bool tracePresent = false,
})

Constructor.

Implementation

Axi5CrChannelInterface({
  this.debugMixInEnable = false,
  this.tracePresent = false,
})  : loopWidth = 0,
      super(
        prefix: 'CR',
        main: true,
        useCrediting: false,
        sharedCredits: false,
        numRp: 0,
      ) {
  if (debugMixInEnable) {
    makeDebugPorts();
  }
}