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