Axi4RequestPacket constructor
- required LogicValue addr,
- required LogicValue prot,
- LogicValue? id,
- LogicValue? len,
- LogicValue? size,
- LogicValue? burst,
- LogicValue? lock,
- LogicValue? cache,
- LogicValue? qos,
- LogicValue? region,
- LogicValue? user,
- LogicValue? domain,
- LogicValue? bar,
Creates a new packet.
Implementation
// TODO(kimmeljo): how to capture the type (AR vs. AW)??
Axi4RequestPacket(
{required this.addr,
required this.prot,
this.id,
this.len,
this.size,
this.burst,
this.lock,
this.cache,
this.qos,
this.region,
this.user,
this.domain,
this.bar});