diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2007-02-21 07:41:03 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2007-02-21 07:41:03 +0000 |
| commit | 2c4e0d4c97746b9083077f38980dd7a6abbfed06 (patch) | |
| tree | d1e745920968f7d97eb21110b4a4f49f18fb1fed /apps | |
| parent | 1f730ede9b4360418deefc63593f790b21b167ce (diff) | |
| download | rockbox-2c4e0d4c97746b9083077f38980dd7a6abbfed06.zip rockbox-2c4e0d4c97746b9083077f38980dd7a6abbfed06.tar.gz rockbox-2c4e0d4c97746b9083077f38980dd7a6abbfed06.tar.bz2 rockbox-2c4e0d4c97746b9083077f38980dd7a6abbfed06.tar.xz | |
How'd I miss that little tweak?
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12427 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/dsp_cf.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/dsp_cf.S b/apps/dsp_cf.S index b42e2b2..c616c25 100644 --- a/apps/dsp_cf.S +++ b/apps/dsp_cf.S @@ -186,9 +186,9 @@ dsp_upsample: beq.b .usstart_0 | no? transistion from down cmp.l %d3, %d6 | past end of samples? bge.b .usloop_skip | yes? skip loop - lea.l 4(%a3, %d6.l*4), %a3 | %a3 = s + pos + 1 - movem.l -8(%a3), %d0-%d1 | %d0 = *(s - 2), %d1 = *(s - 1) - .word 0x51fa | tpf.w - trap next instruction + lea.l (%a3, %d6.l*4), %a3 | %a3 = s = s + pos + move.l -4(%a3), %d6 | %d6 = *(s - 1) + .word 0x51fb | tpf.l - trap next two instructions .usstart_0: move.l (%a3)+, %d1 | %d1 = *s++ .word 0x51fb | tpf.l - trap next two instructions |