Subversion Repositories Kolibri OS

Rev

Rev 696 | 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 sqrtf
  7.  
  8. sqrtf:
  9.  
  10.         fld     dword[esp+4]
  11.         fsqrt
  12.  
  13.         ret
  14.  
  15.