ID:10188 Verilog HDL Net Declaration or Register Declaration error at <location>: vector 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 a vector of multibit values, such as a vector of integers like integer [0:3] int_vec. Verilog HDL does not support vectors of multibit values.

ACTION: Change the multibit vector into an array. For example, you could change integer [0:3] int_vec into integer int_vec [0:3].