9a9b91c940
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
16 lines
234 B
ArmAsm
16 lines
234 B
ArmAsm
.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
|