I have fifo, i have to read data from location 23 to 35 and put in an array
sc_fifo<36> data_fifo(8);
int arr_1[13];
now i had to specify the location from where i have to copy the data like from 23 upto 35 and put that in an array arr_1;
so tell me the idea, how it would be possible??
how could i access fifo locations?