source: trunk/minix/lib/float/fptrp.s@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 245 bytes
Line 
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
Note: See TracBrowser for help on using the repository browser.