mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-29 05:55:16 -04:00
kern: implement 13.1.0 kernel changes
This commit is contained in:
parent
ebca23305e
commit
1d5f66be56
4 changed files with 10 additions and 2 deletions
|
@ -52,6 +52,10 @@ namespace ams::kern::arch::arm64::cpu {
|
|||
__asm__ __volatile__("dmb sy" ::: "memory");
|
||||
}
|
||||
|
||||
ALWAYS_INLINE void DataMemoryBarrierInnerShareable() {
|
||||
__asm__ __volatile__("dmb ish" ::: "memory");
|
||||
}
|
||||
|
||||
ALWAYS_INLINE void InstructionMemoryBarrier() {
|
||||
__asm__ __volatile__("isb" ::: "memory");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue