mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 16:48:16 +00:00
22 lines
552 B
ArmAsm
22 lines
552 B
ArmAsm
|
/*
|
||
|
* COPYRIGHT: See COPYING in the top level directory
|
||
|
* PROJECT: ReactOS system libraries
|
||
|
* PURPOSE: Implementation of floor
|
||
|
* FILE: lib/sdk/crt/math/amd64/floor.S
|
||
|
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
|
||
|
*/
|
||
|
|
||
|
/* INCLUDES ******************************************************************/
|
||
|
|
||
|
#include <reactos/asm.h>
|
||
|
#include <ndk/amd64/asm.h>
|
||
|
|
||
|
/* FUNCTIONS ****************************************************************/
|
||
|
|
||
|
.code64
|
||
|
|
||
|
PUBLIC floor
|
||
|
floor:
|
||
|
UNIMPLEMENTED floor
|
||
|
ret
|