blob: 4307dfb6b4e5e13a3f055b3dfdc4829ee1ee95e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.ident "aarch64-managarm-mlibc crti"
.section .init
.global _init
_init:
stp x29, x30, [sp, -16]!
mov x29, sp
.section .fini
.global _fini
_fini:
stp x29, x30, [sp, -16]!
mov x29, sp
.section .note.GNU-stack,"",%progbits
|