Inserted optimized synth_full and put some vital data in IRAM.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6131 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thom Johansen 2005-03-04 10:37:15 +00:00
parent d787c836bc
commit ee811a3443
2 changed files with 165 additions and 9 deletions

View file

@ -28,9 +28,9 @@
static struct plugin_api* rb;
struct mad_stream Stream;
struct mad_frame Frame;
struct mad_synth Synth;
struct mad_stream Stream __attribute__ ((section(".idata")));
struct mad_frame Frame __attribute__ ((section(".idata")));
struct mad_synth Synth __attribute__ ((section(".idata")));
mad_timer_t Timer;
struct dither d0, d1;