7 lines
129 B
ArmAsm
7 lines
129 B
ArmAsm
|
|
/* Callable from C as
|
||
|
|
void *native_stack_pointer(void) */
|
||
|
|
.globl native_stack_pointer
|
||
|
|
native_stack_pointer:
|
||
|
|
mov %ebp,%eax
|
||
|
|
ret
|