You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Occamy emulation we use these typedefs at the ports of a custom packaged Vivado IP.
But Vivado requires that "the IP ports are contained within the port description of the HDL file" (c.f. doc page 14).
So custom Vivado IPs can't use axi_pkg::burst_t at their top anymore (similar issue on this support thread)
We could maybe define the typdef with a numerical value and then the parameter based on the $size of this typedef.
See proposition in d2f98d6
The text was updated successfully, but these errors were encountered:
Since commit fe4e020 the typedef
axi_pkg::burst_t
now relies on a Verilog parameterBurstWidth
.axi/src/axi_pkg.sv
Line 46 in fd60be8
In Occamy emulation we use these typedefs at the ports of a custom packaged Vivado IP.
But Vivado requires that "the IP ports are contained within the port description of the HDL file" (c.f. doc page 14).
So custom Vivado IPs can't use
axi_pkg::burst_t
at their top anymore (similar issue on this support thread)We could maybe define the typdef with a numerical value and then the parameter based on the
$size
of this typedef.See proposition in d2f98d6
The text was updated successfully, but these errors were encountered: