Move pcm doublebuffer to IRAM on nano 2G.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28600 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andree Buschmann 2010-11-14 19:49:20 +00:00
parent 4523db1333
commit ba64cf697e

View file

@ -41,7 +41,7 @@
static volatile int locked = 0;
static const int zerosample = 0;
static unsigned char dblbuf[1024];
static unsigned char dblbuf[1024] IBSS_ATTR;
static const unsigned char* queuedbuf;
static size_t queuedsize;
static const unsigned char* nextbuf;