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
I'm trying to use axi_interconnect to arbitrate multicore processors by setting M_COUNT = 1.
However, in this case, CL_M_COUNT = $clog2(M_COUNT) becomes 0, and then some registers are declared as reg [-1:0] at the following line, leading Verilator to send a warning.
Hello,
I'm trying to use
axi_interconnect
to arbitrate multicore processors by settingM_COUNT = 1
.However, in this case,
CL_M_COUNT = $clog2(M_COUNT)
becomes0
, and then some registers are declared asreg [-1:0]
at the following line, leading Verilator to send a warning.verilog-axi/rtl/axi_interconnect.v
Line 306 in 38915fb
Since
s_select
wire is declared aswire [(CL_S_COUNT > 0 ? CL_S_COUNT-1 : 0):0] s_select;
, how about declaring these registers in the same manner?The text was updated successfully, but these errors were encountered: