home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / math / fmod.s < prev    next >
Encoding:
Text File  |  1994-11-23  |  322 b   |  30 lines

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2.     .data
  3. LCW1:
  4.     .word    0
  5.     .align    4
  6.  
  7.     .text
  8.  
  9.     .globl    _fmod
  10. _fmod:
  11.     fldl    4(%esp)
  12.     fldl    12(%esp)
  13.     ftst
  14.     fnstsw    %ax
  15.     fxch    %st(1)
  16.     sahf
  17.     jnz    next
  18.     fstpl    %st(0)
  19.     jmp    out
  20. next:
  21.     fpreml
  22.     fnstsw    %ax
  23.     sahf
  24.     jpe    next
  25.     fstpl    %st(1)
  26. out:
  27.     ret
  28.  
  29.  
  30.