diff options
Diffstat (limited to 'libc-top-half/musl/crt/aarch64/crti.s')
-rw-r--r-- | libc-top-half/musl/crt/aarch64/crti.s | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libc-top-half/musl/crt/aarch64/crti.s b/libc-top-half/musl/crt/aarch64/crti.s new file mode 100644 index 0000000..775df0a --- /dev/null +++ b/libc-top-half/musl/crt/aarch64/crti.s @@ -0,0 +1,13 @@ +.section .init +.global _init +.type _init,%function +_init: + stp x29,x30,[sp,-16]! + mov x29,sp + +.section .fini +.global _fini +.type _fini,%function +_fini: + stp x29,x30,[sp,-16]! + mov x29,sp |