les dejo el asm de un parchesito add-on ke hice para el parche de farid este lo que hace es que al entrar al menu GoTo Shortcuts reproduce un sonido en mp3 tambien se le puede cambiar el volumen del sonido en hexadecimal el maximo es 64 = 100 en decimal
Código:
include "x.inc"
include "lib2.asm"
;W705 SW-R1GA031
;add-on for patch GoTo Shortcut
;play sound at enter in The menu  Go To Shortcut.
;(c) albertnet3
;v1.0
org 0x15D715E0    
LDR     R3, _body
BX      R3     
_body    dw body+1
return:

org 0x15d71d10
body:    
        LDR    R1, _Icon
        LSL    R0, R7,    0
        BL    0x15D71A58    ;_SetTitleIcon
        adr    R0, aCardOtherIni 
        adr    R1, aGoTo_mp3    
        MOV    R2, 0x64;Volume (min: 0 max:64 in hex. value)    
        BL    _PlayFile                    
        LDR    R3, _return
        BX    R3            
        align 4        
_PlayFile:                
var_1C        = -0x1C
        LDR    R3, _PlayFileX
        BX    R3
            
_PlayFileX        dw PlayFileV+1            
_return         dw return+1    
_Icon            dw 0x83C 
aGoTo_mp3        du "GoTo.mp3",0    
align 4
aCardOtherIni    du "/card/other/ini",0