I'm trying to access an element from an array using an input as index and I keep getting this error:
cache.v:27: error: array 'tagc' index must be a constant in this context.
Here's how I'm trying to do it:
assign tagc[index] = tag;
tagc is an array of 1024 regs; index is a 10 bits input; tag is a 20 bits input.
Is there a way to do that?