2010-03-03 15:27:30 +01:00
|
|
|
/* get_bp.s */
|
|
|
|
/* */
|
|
|
|
/* return EBP in EAX */
|
|
|
|
/* */
|
|
|
|
/* Created: Sep 7, 1992 by Philip Homburg */
|
|
|
|
|
2010-08-17 18:44:07 +02:00
|
|
|
#include <machine/asm.h>
|
2010-03-03 15:27:30 +01:00
|
|
|
|
2010-08-17 18:44:07 +02:00
|
|
|
ENTRY(get_bp)
|
2010-03-03 15:27:30 +01:00
|
|
|
movl %ebp, %eax
|
|
|
|
ret
|
|
|
|
|
|
|
|
/* $PchId: get_bp.ack.s,v 1.3 1996/02/23 08:30:52 philip Exp $ */
|