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