home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / MATH / ATAN2.S < prev    next >
Encoding:
Text File  |  1993-01-02  |  360 b   |  19 lines

  1. / atan2.s (emx+gcc) -- Copyright (c) 1991-1993 by Eberhard Mattes
  2.  
  3.         .globl  _atan2
  4.  
  5.         .text
  6.  
  7.         .align  2, 0x90
  8.  
  9. / double atan2 (double y, double x)
  10.  
  11. #define y        4(%esp)
  12. #define x       12(%esp)
  13.  
  14. _atan2:
  15.         fldl    y                       / y
  16.         fldl    x                       / x
  17.         fpatan
  18.         ret
  19.