xref: /haiku/src/system/glue/arch/arm64/crtn.S (revision 899e0ef82b5624ace2ccfa5f5a58c8ebee54aaef)
1/*
2 * Copyright 2019 Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
4 */
5
6.section .init, "ax", @progbits
7	ldr		lr, [sp]
8	add		sp, sp, #16
9	ret
10
11.section .fini, "ax", @progbits
12	ldr		lr, [sp]
13	add		sp, sp, #16
14	ret
15