mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
554bbb6bab
Implement controlfp, statusfp, fpreset, clearfp. CORE-17757 CORE-17604
25 lines
486 B
ArmAsm
25 lines
486 B
ArmAsm
/*
|
|
* PROJECT: ReactOS CRT library
|
|
* LICENSE: MIT (https://spdx.org/licenses/MIT)
|
|
* PURPOSE: ARM fpscr getter
|
|
* COPYRIGHT: Copyright 2021 Roman Masanin <36927roma@gmail.com>
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
#include <kxarm.h>
|
|
|
|
/* CODE **********************************************************************/
|
|
|
|
TEXTAREA
|
|
|
|
LEAF_ENTRY __getfp
|
|
|
|
VMRS R0,FPSCR
|
|
|
|
BX LR
|
|
|
|
LEAF_END __getfp
|
|
|
|
END
|
|
/* EOF */
|