Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

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