mirror of
https://github.com/reactos/reactos.git
synced 2025-07-03 17:01:25 +00:00

Although the idea of using mingw-w64's routines is good, we can't because it's using x87. We need SSE2. svn path=/branches/ros-amd64-bringup/; revision=45255
21 lines
493 B
ArmAsm
21 lines
493 B
ArmAsm
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* PURPOSE: Implementation of fabs
|
|
* FILE: lib/sdk/crt/math/amd64/fabs.S
|
|
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
#include <ndk/amd64/asm.h>
|
|
#include <ndk/amd64/asmmacro.S>
|
|
|
|
.intel_syntax noprefix
|
|
|
|
|
|
.proc fabs
|
|
UNIMPLEMENTED fabs
|
|
ret
|
|
|
|
.endproc
|