Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1.  
  2. format ELF
  3. include 'proc32.inc'
  4. section '.text' executable
  5.            
  6. public atan2_ as "atan2"
  7.  
  8. atan2_:
  9.  
  10.         fld     qword[esp+8]
  11.         fld     qword[esp+4]
  12.         fpatan
  13.  
  14.         ret
  15.  
  16.