repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
merge libminlib with libc
[minix3.git]
/
minix
/
lib
/
libc
/
arch
/
i386
/
get_bp.S
blob
8b0a2de3be9652989c6d8ec513b3646c76907366
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
9
ENTRY(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 $ */