reactos/lib/sdk/crt/misc/i386/readcr4.S
Timo Kreuzer 0b8509a565 [CRT]
- Use ___readcr4 instead of __readcr4, because MSVC doesn't like this intrinsic to be redefined.
- Add _ftol2

svn path=/branches/cmake-bringup/; revision=49679
2010-11-21 09:36:26 +00:00

13 lines
91 B
ArmAsm

#include <asm.inc>
.code
PUBLIC ____readcr4
____readcr4:
mov eax, cr4
ret
END