Subversion Repositories Kolibri OS

Rev

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

  1. format COFF
  2. section '.text'
  3.  
  4. public _sqrt as "sqrt"
  5.  
  6. _sqrt:
  7.     fld qword[esp+4]
  8.     fsqrt
  9.     ret
  10.