forked from KolibriOS/kolibrios
728f124678
Configured autobuild git-svn-id: svn://kolibrios.org@8687 a494cfbc-eb01-0410-851d-a64ba20cac60
16 lines
240 B
ArmAsm
16 lines
240 B
ArmAsm
|
|
.global setjmp
|
|
|
|
setjmp:
|
|
mov 4(%esp), %eax
|
|
mov %ebx, (%eax)
|
|
mov %esi, 4(%eax)
|
|
mov %edi, 8(%eax)
|
|
mov %ebp, 12(%eax)
|
|
lea 4(%esp), %ecx
|
|
mov %ecx, 16(%eax)
|
|
mov (%esp), %ecx
|
|
mov %ecx, 20(%eax)
|
|
xor %eax, %eax
|
|
ret
|