Hi
Thank You.
Yes. I Signaltap both input(avs_s1_address) and output(avm_m1_address) signals. Both are same.
And also I collected memory access traces.
For example program (given bellow), I access same memory location. But in the memory access traces, there are some other memory addresses. As I said earlier, for certain number of read/write, in the middle there are continues 95 extra addresses, when I increase read/write, I could see another same set of extra addresses.
counter_RESET();
counter_ENABLE();
while(IORD_32DIRECT(BASE, 8) < 30000){
IOWR_32DIRECT(BASE, 8, IORD_32DIRECT(BASE, 8)+1);
}
counter_DISABLE();
Where these accesses are coming from? (Only NiosII data master is connected to Data memory.) And how can I prevent counting these accesses?
Thank You