mirror of
https://github.com/reactos/reactos.git
synced 2025-07-23 14:53:37 +00:00
17 lines
137 B
ArmAsm
17 lines
137 B
ArmAsm
![]() |
|
||
|
|
||
|
#include <asm.inc>
|
||
|
|
||
|
.code64
|
||
|
|
||
|
FUNC _logb
|
||
|
.endprolog
|
||
|
|
||
|
fld dword ptr [rsp + 8]
|
||
|
fxtract
|
||
|
fstp st
|
||
|
ret
|
||
|
ENDFUNC _logb
|
||
|
|
||
|
END
|