2010-07-21 16:03:44 +00:00
|
|
|
/*
|
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS system libraries
|
|
|
|
* PURPOSE: Implementation of tan
|
|
|
|
* FILE: lib/sdk/crt/math/amd64/sqrtf.S
|
|
|
|
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
|
2010-11-27 22:12:15 +00:00
|
|
|
#include <asm.inc>
|
|
|
|
#include <ksamd64.inc>
|
2010-07-21 16:03:44 +00:00
|
|
|
|
2011-02-10 10:30:43 +00:00
|
|
|
/* CODE **********************************************************************/
|
|
|
|
.code64
|
2010-07-21 16:03:44 +00:00
|
|
|
|
|
|
|
PUBLIC sqrtf
|
|
|
|
sqrtf:
|
|
|
|
sqrtss xmm0, xmm0
|
|
|
|
ret
|
2010-11-27 22:12:15 +00:00
|
|
|
|
|
|
|
END
|