Hi,
I have a for generate loop(named for block) - which instantiates modules 2 times, something like this
generate
for() begin : acc
//module instance
//I have to make a connection to make which is coming as an out of inst0 to inst1
end
endgenerate
//so I was trying to connect like this
//assign acc[0].inst.a = var[0];
//assign acc[1].inst.a = out[0]; // This comes as an output from acc[0].insta.out
But I come across the above mentioned error - If anyone could answer could be helpful.
Thanks in Advance