Initial revision

This commit is contained in:
Ben Gras
2005-04-21 14:53:53 +00:00
commit 9865aeaa79
2264 changed files with 411685 additions and 0 deletions

19
lib/float/fptrp.s Executable file
View File

@@ -0,0 +1,19 @@
#
.sect .text; .sect .rom; .sect .data; .sect .bss
.define __fptrp
.sect .text
__fptrp:
#if __i386
push ebp
mov ebp, esp
mov eax, 8(bp)
call .Xtrp
leave
ret
#else /* i86 */
push bp
mov bp, sp
mov ax, 4(bp)
call .Xtrp
jmp .cret
#endif