1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-07-26 17:04:26 +00:00
reactos/sdk/lib/crt/float/amd64/logb.S

16 lines
131 B
ArmAsm

#include <asm.inc>
.code64
FUNC _logb
.endprolog
fld dword ptr [rsp + 8]
fxtract
fstp st
ret
ENDFUNC
END