82646d764b
- Added inttypes header; - Fixed warnings in mouse api wrappers; - Preparation for build only via tcc+fasm. git-svn-id: svn://kolibrios.org@9774 a494cfbc-eb01-0410-851d-a64ba20cac60
10 lines
99 B
NASM
10 lines
99 B
NASM
format COFF
|
|
section '.text'
|
|
|
|
public _sqrt as "sqrt"
|
|
|
|
_sqrt:
|
|
fld qword[esp+4]
|
|
fsqrt
|
|
ret
|