xref: /haiku/src/system/libroot/os/arch/arm64/get_stack_frame.S (revision 39be4f89f500d489df5a6d8b2162f6e271e1b05e)
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