diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2007-02-24 17:34:18 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2007-02-24 17:34:18 +0000 |
commit | f12b1c028285822efba05ee88af6ee13edf5459d (patch) | |
tree | 7dd2202947d3111e55e1d8d7c9f500922611a23b | |
parent | b41c8a06b28abe51f95a2b85adb83ba0c2838354 (diff) |
Hrm. move.q? I want moveq.l :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12474 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/dsp_cf.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dsp_cf.S b/apps/dsp_cf.S index 1f8dd48cee..3c48258b5a 100644 --- a/apps/dsp_cf.S +++ b/apps/dsp_cf.S @@ -356,7 +356,7 @@ sample_output_stereo: move.l (%a1), %d1 | %a1 = multiplier: (1 << (16 - scale)) sub.l #16, %d1 | neg.l %d1 | - move.q #1, %d0 | + moveq.l #1, %d0 | asl.l %d1, %d0 | move.l %d0, %a1 | movem.l (%a2), %a2-%a3 | get L/R channel pointers @@ -452,7 +452,7 @@ sample_output_mono: move.l (%a1), %d1 | %d5 = multiplier: (1 << (16 - scale)) sub.l #16, %d1 | neg.l %d1 | - move.q #1, %d5 | + moveq.l #1, %d5 | asl.l %d1, %d5 | movem.l (%a2), %a2 | get source channel pointer moveq.l #28, %d0 | %d0 = second line bound |