forked from acco/chti23
37 lines
No EOL
579 B
ArmAsm
37 lines
No EOL
579 B
ArmAsm
PRESERVE8
|
|
THUMB
|
|
include Driver/DriverJeuLaser.inc
|
|
|
|
; ====================== zone de réservation de données, ======================================
|
|
;Section RAM (read only) :
|
|
area mesdata,data,readonly
|
|
|
|
|
|
;Section RAM (read write):
|
|
area maram,data,readwrite
|
|
|
|
SortieSon dcw 0
|
|
Index dcw 0
|
|
|
|
; ===============================================================================================
|
|
|
|
|
|
|
|
|
|
;Section ROM code (read only) :
|
|
area moncode,code,readonly
|
|
; écrire le code ici
|
|
|
|
EXPORT CallbackSon
|
|
|
|
CallbackSon proc
|
|
|
|
push {lr}
|
|
|
|
pop {pc}
|
|
|
|
|
|
|
|
endp
|
|
|
|
END
|