1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-06-20 07:36:05 +00:00
reactos/sdk/lib/crt/float/amd64/logb.S

17 lines
144 B
ArmAsm

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