xref: /haiku/src/system/libroot/os/arch/riscv64/stack_frame.S (revision 901fc0c75ff0285552d9099b5c61f2af8cd26f07)
1/*
2 * Copyright 2021, Haiku, Inc.
3 * Distributed under the terms of the MIT License.
4 */
5
6
7#include <asm_defs.h>
8
9
10/* void* get_stack_frame(void) */
11FUNCTION(get_stack_frame):
12	mv a0, fp
13	ret
14FUNCTION_END(get_stack_frame)
15