- Implement KeArmInstructionFaultStatusRegisterGet

svn path=/trunk/; revision=34477
This commit is contained in:
ReactOS Portable Systems Group 2008-07-13 23:31:46 +00:00
parent 97892224cf
commit a999d87cb4

View file

@ -38,6 +38,15 @@ KeArmFaultStatusRegisterGet(VOID)
return Value;
}
FORCEINLINE
ULONG
KeArmInstructionFaultStatusRegisterGet(VOID)
{
ULONG Value;
__asm__ __volatile__ ("mrc p15, 0, %0, c5, c0, 1" : "=r"(Value) : : "cc");
return Value;
}
FORCEINLINE
ULONG
KeArmFaultAddressRegisterGet(VOID)