mirror of
https://github.com/reactos/reactos.git
synced 2025-06-23 21:00:26 +00:00
20 lines
539 B
ArmAsm
20 lines
539 B
ArmAsm
![]() |
/*
|
||
|
* 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 ******************************************************************/
|
||
|
|
||
|
#include <reactos/asm.h>
|
||
|
#include <ndk/amd64/asm.h>
|
||
|
|
||
|
/* DATA *********************************************************************/
|
||
|
|
||
|
PUBLIC sqrtf
|
||
|
sqrtf:
|
||
|
sqrtss xmm0, xmm0
|
||
|
ret
|