diff options
author | Michael Giacomelli <giac2000@hotmail.com> | 2007-07-29 05:21:20 +0000 |
---|---|---|
committer | Michael Giacomelli <giac2000@hotmail.com> | 2007-07-29 05:21:20 +0000 |
commit | f68ab0d497fb2f0f13e31f4d9e29f92f457edc37 (patch) | |
tree | 4400780801bd663692e0b5d2d2fca7f89c8bd79f /apps/codecs/libmad/synth_full_arm.S | |
parent | e64f7e3a6f3019be855469373920198ac19ee654 (diff) |
Fix mp3 playback on the gigabeat by not putting code in IRAM. Someone actually familar with the gigabeat port should check this.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14050 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libmad/synth_full_arm.S')
-rw-r--r-- | apps/codecs/libmad/synth_full_arm.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libmad/synth_full_arm.S b/apps/codecs/libmad/synth_full_arm.S index b880a7b3c6..3e81f77ec9 100644 --- a/apps/codecs/libmad/synth_full_arm.S +++ b/apps/codecs/libmad/synth_full_arm.S @@ -21,7 +21,7 @@ /* This performs slower in IRAM on PP502x and there is no space in mpegplayer on the PP5002 */ -#if defined(CPU_PP502x) || (CONFIG_CPU == PP5002 && defined(MPEGPLAYER)) +#if defined(CPU_PP502x) || (CONFIG_CPU == PP5002 && defined(MPEGPLAYER)) || defined(TOSHIBA_GIGABEAT_F) .section .text,"ax",%progbits #else .section .icode,"ax",%progbits |