I have the following code to initialize an array to zero:
CODE
float my_array[MAX];
for (i = 0; i < MAX; i++){
my_array[i] = 0;
}
The vhdl inferred performs the loop as coded. However, I'd like to reset the array instantly, with a reset signal. Is there any way to do this?
Thanks in advance,
Kind Regards,
Diego.












