forked from len0rd/rockbox
Reset the pcm_paused flag in the PP FIQ as well to complement the fix for FS #7187. Now it also works on Mini G2.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13428 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
a416cc981a
commit
705d2f879f
1 changed files with 2 additions and 0 deletions
|
|
@ -127,6 +127,8 @@ void fiq(void)
|
||||||
".dma_stop: \n\t" /* no more data, do dma_stop() and exit */
|
".dma_stop: \n\t" /* no more data, do dma_stop() and exit */
|
||||||
"ldr r10, =pcm_playing\n\t"
|
"ldr r10, =pcm_playing\n\t"
|
||||||
"strb r8, [r10] \n\t" /* pcm_playing = false (r8=0, look above) */
|
"strb r8, [r10] \n\t" /* pcm_playing = false (r8=0, look above) */
|
||||||
|
"ldr r10, =pcm_paused \n\t"
|
||||||
|
"strb r8, [r10] \n\t" /* pcm_paused = false (r8=0, look above) */
|
||||||
"ldr r10, [r12] \n\t"
|
"ldr r10, [r12] \n\t"
|
||||||
#if CONFIG_CPU == PP5002
|
#if CONFIG_CPU == PP5002
|
||||||
"bic r10, r10, #0x4\n\t" /* disable playback FIFO */
|
"bic r10, r10, #0x4\n\t" /* disable playback FIFO */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue