1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-06-24 09:10:18 +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