I have a problem with this
wire [7:0] table [0:999];
wire [8*1000-1:0] y;
assign y = {table[0], table[1], table[2], ...., table[999]}; // this line code is right, I don't want hard code
I want y is all 1000 values of table but I don't know how to assign all values in 1 line of code( or 2,3). code assign above is right but if there is 100000 values, do I have to type 100000 times?