summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/codecs/libwma/wmadeci.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/codecs/libwma/wmadeci.c b/apps/codecs/libwma/wmadeci.c
index fe5ec73882..34a0f9f229 100644
--- a/apps/codecs/libwma/wmadeci.c
+++ b/apps/codecs/libwma/wmadeci.c
@@ -113,11 +113,11 @@ void vector_fmul_add_add(fixed32 *dst, const fixed32 *data,
asm volatile (
"0:"
"movem.l (%[d]), %%d0-%%d3;"
- "movem.l (%[w]), %%a0-%%a1/%%d4-%%d5;"
- "mac.l %%d0, %%a0, %%acc0;"
- "mac.l %%d1, %%a1, %%acc1;"
- "mac.l %%d2, %%d4, %%acc2;"
- "mac.l %%d3, %%d5, %%acc3;"
+ "movem.l (%[w]), %%d4-%%d5/%%a0-%%a1;"
+ "mac.l %%d0, %%d4, %%acc0;"
+ "mac.l %%d1, %%d5, %%acc1;"
+ "mac.l %%d2, %%a0, %%acc2;"
+ "mac.l %%d3, %%a1, %%acc3;"
"lea.l (%[d], 16), %[d];"
"lea.l (%[w], 16), %[w];"
"movclr.l %%acc0, %%d0;"