home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
- .globl _ceil
- _ceil:
- pushl %ebp
- movl %esp,%ebp
- subl $8,%esp /* -4 = old CW, -2 = new CW */
-
- fstcw -4(%ebp)
- fwait
- movw -4(%ebp),%ax
- andw $0xf3ff,%ax
- orw $0x0800,%ax
- movw %ax,-2(%ebp)
- fldcww -2(%ebp)
-
- fldl 8(%ebp)
- frndint
-
- fldcww -4(%ebp)
-
- movl %ebp,%esp
- popl %ebp
- ret
-
-