Axi5MsiInterface constructor

Axi5MsiInterface({
  1. bool useWakeup = false,
})

Construct a new instance of an MSI interface.

Default values in constructor are from official spec.

Implementation

Axi5MsiInterface({
  super.useWakeup = false,
}) : super(
          idWidth: 0,
          dataWidth: 64,
          userWidth: 0,
          destWidth: 0,
          useKeep: false,
          useStrb: false,
          useLast: false);