forked from KolibriOS/kolibrios
release ktcc 0.9.26
git-svn-id: svn://kolibrios.org@6424 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
18
programs/develop/ktcc/trunk/libc/math/log.asm
Normal file
18
programs/develop/ktcc/trunk/libc/math/log.asm
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
format ELF
|
||||
include 'proc32.inc'
|
||||
section '.text' executable
|
||||
|
||||
public log_ as "log"
|
||||
|
||||
log_:
|
||||
|
||||
; ln(x) = lg(x)/lg(e).
|
||||
|
||||
fld qword[esp+4]
|
||||
fld1
|
||||
fxch
|
||||
fyl2x ;Compute 1*lg(x).
|
||||
fldl2e ;Load lg(e).
|
||||
fdivp st1, st0 ;Compute lg(x)/lg(e).
|
||||
ret
|
Reference in New Issue
Block a user