Hello,
I used ADSP-2181 where I used to write a code for circular buffer as following.
.VAR/CIRC comm[32];
.
.
.
L0=32;
I0=comm;
M0=1;
.
.
.
I0=comm; // point to beginning of comm[32] vector
CNTR=32;
AX0=0x0000;
DO comm_zero UNTIL CE;
comm_zero: DM(I0,M0)=ax0;
I like to know what would be the equivalent of the above code in the BF506F ?
Thank you,
Osman Demirci