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