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