mirror of
https://github.com/reactos/reactos.git
synced 2025-05-19 00:54:18 +00:00
16 lines
131 B
ArmAsm
16 lines
131 B
ArmAsm
|
|
|
|
#include <asm.inc>
|
|
|
|
.code64
|
|
|
|
FUNC _logb
|
|
.endprolog
|
|
|
|
fld dword ptr [rsp + 8]
|
|
fxtract
|
|
fstp st
|
|
ret
|
|
ENDFUNC
|
|
|
|
END
|