home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / math / ceil.s < prev    next >
Encoding:
Text File  |  1995-03-28  |  380 b   |  25 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2.     .globl    _ceil
  3. _ceil:
  4.     pushl    %ebp
  5.     movl    %esp,%ebp
  6.     subl    $8,%esp         /* -4 = old CW, -2 = new CW */
  7.  
  8.     fstcw    -4(%ebp)
  9.     fwait
  10.     movw    -4(%ebp),%ax
  11.     andw    $0xf3ff,%ax
  12.     orw    $0x0800,%ax
  13.     movw    %ax,-2(%ebp)
  14.     fldcww    -2(%ebp)
  15.  
  16.     fldl    8(%ebp)
  17.     frndint
  18.  
  19.     fldcww    -4(%ebp)
  20.  
  21.     movl    %ebp,%esp
  22.     popl    %ebp
  23.     ret
  24.  
  25.