xref: /minix/minix/lib/libc/arch/i386/get_bp.S (revision 9f988b79)
1/* get_bp.s */
2/* */
3/* return EBP in EAX */
4/* */
5/* Created:	Sep 7, 1992 by Philip Homburg */
6
7#include <machine/asm.h>
8
9ENTRY(get_bp)
10	movl	%ebp, %eax
11	ret
12
13/* $PchId: get_bp.ack.s,v 1.3 1996/02/23 08:30:52 philip Exp $ */
14