start.cold/warm: Correct MSR instructions

The second operand needs to be an immediate
This commit is contained in:
Lioncash 2018-02-23 08:30:50 -05:00
parent 90f792b1cc
commit a9eccab99b
No known key found for this signature in database
GPG Key ID: 4E3C3CC1031BA9C7
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