mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
17 lines
144 B
ArmAsm
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
|