diff options
Diffstat (limited to 'libc-top-half/musl/crt/aarch64')
-rw-r--r-- | libc-top-half/musl/crt/aarch64/crti.s | 13 | ||||
-rw-r--r-- | libc-top-half/musl/crt/aarch64/crtn.s | 7 |
2 files changed, 20 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 diff --git a/libc-top-half/musl/crt/aarch64/crtn.s b/libc-top-half/musl/crt/aarch64/crtn.s new file mode 100644 index 0000000..73cab69 --- /dev/null +++ b/libc-top-half/musl/crt/aarch64/crtn.s @@ -0,0 +1,7 @@ +.section .init + ldp x29,x30,[sp],#16 + ret + +.section .fini + ldp x29,x30,[sp],#16 + ret |