2010-07-21 16:03:44 +00:00
|
|
|
/*
|
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS system libraries
|
|
|
|
* PURPOSE: Implementation of pow
|
|
|
|
* FILE: lib/sdk/crt/math/amd64/pow.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 pow
|
|
|
|
pow:
|
|
|
|
UNIMPLEMENTED pow
|
|
|
|
ret
|
|
|
|
|
2011-02-10 10:30:43 +00:00
|
|
|
END
|