1
0
Fork 0
forked from len0rd/rockbox

More linker safe MP3 buffer handling in the simulator

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3972 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2003-10-14 10:18:22 +00:00
parent cbbbcd1800
commit 65a17b848a
2 changed files with 5 additions and 1 deletions

View file

@ -21,7 +21,7 @@
#ifdef SIMULATOR
unsigned char mp3buffer[0x100000];
unsigned char mp3end[1];
unsigned char *mp3end = mp3buffer + sizeof(mp3buffer);
#else
/* defined in linker script */
extern unsigned char mp3buffer[];