9a21d1a2fd
-The macros take care of prepending the leading underscore when necessary.
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 $ */
|