xref: /haiku/src/system/libroot/os/arch/x86/get_stack_frame.S (revision 072d3935c2497638e9c2502f574c133caeba9d3d)
1/*
2 * Copyright 2005-2008, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4*/
5
6#include <asm_defs.h>
7
8
9/* void* get_stack_frame(void) */
10FUNCTION(get_stack_frame):
11	mov		%ebp, %eax
12	ret
13FUNCTION_END(get_stack_frame)
14
15