Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.
hi,
Circular addressing is the techniques which is used in the digital signal processors to optimize the code since it has zero overhead. Actually it is very usefull in the calculations which require multiply and accumulate instructions within a loop. It is mainly used in the computation of FFTs, IFFTs and correlations.
suppose you have a number of data stored at some memory locations.
think of this as a vector of data having a start and an end.
to do circular addressing, we atach the end to the start so that the vector turns into a ring.
here you can access the last data to be attached to the first data.
this is used in e.g. convolution where you shift the data to have overlapping and then you do the multiplication.
circulare addressing can be used to efficiently use the simulataneous read and write pointers on some Buffers... like in case of Video Encoding in the Bitstream Buffer
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.