mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
start.cold/warm.s: Correct DSB instruction instances (#41)
DSB requires that the barrier option be specified
This commit is contained in:
parent
85df3dcb7e
commit
7b1fa3a8f0
2 changed files with 2 additions and 2 deletions
|
@ -49,7 +49,7 @@ __start_cold:
|
||||||
mov x0, #3
|
mov x0, #3
|
||||||
msr rmr_el3, x0
|
msr rmr_el3, x0
|
||||||
isb
|
isb
|
||||||
dsb
|
dsb sy
|
||||||
/* Nintendo forgot to copy-paste the branch instruction below. */
|
/* Nintendo forgot to copy-paste the branch instruction below. */
|
||||||
_reset_wfi:
|
_reset_wfi:
|
||||||
wfi
|
wfi
|
||||||
|
|
|
@ -49,7 +49,7 @@ __start_warm:
|
||||||
mov x0, #3
|
mov x0, #3
|
||||||
msr rmr_el3, x0
|
msr rmr_el3, x0
|
||||||
isb
|
isb
|
||||||
dsb
|
dsb sy
|
||||||
/* Nintendo forgot to copy-paste the branch instruction below. */
|
/* Nintendo forgot to copy-paste the branch instruction below. */
|
||||||
_reset_wfi:
|
_reset_wfi:
|
||||||
wfi
|
wfi
|
||||||
|
|
Loading…
Reference in a new issue