xref: /haiku/src/system/libroot/os/arch/arm64/get_stack_frame.S (revision 02354704729d38c3b078c696adc1bbbd33cbcf72)
1/*
2 * Copyright 2019 Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#include <asm_defs.h>
6
7/* void* get_stack_frame(void) */
8FUNCTION(get_stack_frame):
9	mov		x0, fp
10	ret
11FUNCTION_END(get_stack_frame)
12