xref: /haiku/src/system/glue/arch/arm64/crtn.S (revision 6a44d4c52765e4fd5ccf6a4a7c69486c9531431d)
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