878ba523ac
This library includes various random and minix-specific functions included in the Minix libc. Most of them should be part of libsys, and in general it would be nice to extinguish this library over time.
13 lines
226 B
ArmAsm
13 lines
226 B
ArmAsm
/* get_bp.s */
|
|
/* */
|
|
/* return EBP in EAX */
|
|
/* */
|
|
/* Created: Sep 7, 1992 by Philip Homburg */
|
|
|
|
#include <machine/asm.h>
|
|
|
|
ENTRY(get_bp)
|
|
movl %ebp, %eax
|
|
ret
|
|
|
|
/* $PchId: get_bp.ack.s,v 1.3 1996/02/23 08:30:52 philip Exp $ */
|