ID:10189 Verilog HDL Net Declaration or Register Declaration error at <location>: array of vectors of multibit values is not supported

CAUSE: In a Net Declaration or Register Declaration at the specified location in a Verilog Design File (.v), you specified an array of vectors of multibit values, such as integers; for example, integer [0:3] int_array_vec [0:15]. Verilog HDL does not support arrays of vectors of multibit values.

ACTION: Change the array of vectors of multibit values into a multidimensional array. For example, if you have integer [0:3] int_array_vec [0:15], you can replace it with integer int_array_vec [0:3][0:15].