start.cold/warm: Correct MSR instructions (#42)

The second operand needs to be an immediate
This commit is contained in:
Mat M 2018-02-23 08:46:06 -05:00 committed by SciresM
parent 7b1fa3a8f0
commit 9dfa6e2732
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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