repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
secondary cache feature in vm.
[minix.git]
/
lib
/
ack
/
libfp
/
fptrp.s
blob
d2823f4d72972d76bd6947b5e7ecfcb63978fe9f
1
#
2
.sect .text; .sect .rom; .sect .data; .sect .bss
3
.define __fptrp
4
.sect .text
5
__fptrp
:
6
#if __i386
7
push ebp
8
mov ebp
,
esp
9
mov eax
,
8
(
bp
)
10
call
.Xtrp
11
leave
12
ret
13
#else /* i86 */
14
push bp
15
mov bp
,
sp
16
mov ax
,
4
(
bp
)
17
call
.Xtrp
18
jmp
.cret
19
#endif