mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
- Implement KeArmInstructionFaultStatusRegisterGet
svn path=/trunk/; revision=34477
This commit is contained in:
parent
97892224cf
commit
a999d87cb4
1 changed files with 9 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue