Parisa
New Contributor
4 years agoModelsim Input Matrix
I do have a matrix input in my code in system verilog and modelsim does not show the matrix input in simulations. when I cahnge the matrix form to an array, then it is shown in the input in simulation
Can someone tell me why is that and help me to fix it?
Thank you
The input not shown in simulation because it is a matrix: input wire [DATA_WIDTH-1:0] instances [CHAN_NUM-1:0],
The input shown when it is an array: input wire [DATA_WIDTH*CHAN_NUM-1:0]instances,