diff options
author | Thom Johansen <thomj@rockbox.org> | 2005-05-31 07:56:28 +0000 |
---|---|---|
committer | Thom Johansen <thomj@rockbox.org> | 2005-05-31 07:56:28 +0000 |
commit | 9985caf3f96df691fad9332986b7af4d0f66676d (patch) | |
tree | 835adf7c966dcc50f0a4a58da1c9726a01835c12 /apps/plugins/wv2wav.c | |
parent | ff40e4cc6a0a66e0eecaceae784203298c8c408d (diff) |
ASM optimisation by David Bryant.
Placed various important arrays in IRAM.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6540 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/wv2wav.c')
-rw-r--r-- | apps/plugins/wv2wav.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/wv2wav.c b/apps/plugins/wv2wav.c index c0bc05cf12..909a0c3c63 100644 --- a/apps/plugins/wv2wav.c +++ b/apps/plugins/wv2wav.c @@ -29,7 +29,7 @@ static struct plugin_api* rb; static file_info_struct file_info; -static long temp_buffer [BUFFER_SIZE]; +static long temp_buffer [BUFFER_SIZE] IDATA_ATTR; /* Reformat samples from longs in processor's native endian mode to little-endian data with 2 bytes / sample. */ |