mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
start.cold/warm: Correct MSR instructions (#42)
The second operand needs to be an immediate
This commit is contained in:
parent
7b1fa3a8f0
commit
9dfa6e2732
2 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ __start_cold:
|
|||
*/
|
||||
/* The following comments are mine. */
|
||||
/* mask all interrupts */
|
||||
msr daifset, daif
|
||||
msr daifset, 0b1111
|
||||
|
||||
/*
|
||||
Enable invalidates of branch target buffer, then flush
|
||||
|
|
|
@ -10,7 +10,7 @@ __start_warm:
|
|||
*/
|
||||
/* The following comments are mine. */
|
||||
/* mask all interrupts */
|
||||
msr daifset, daif
|
||||
msr daifset, 0b1111
|
||||
|
||||
/*
|
||||
Enable invalidates of branch target buffer, then flush
|
||||
|
|
Loading…
Reference in a new issue