From 7b1fa3a8f0b51b7e3aee346dac7b217e803f5c7f Mon Sep 17 00:00:00 2001 From: Mat M Date: Fri, 23 Feb 2018 08:42:55 -0500 Subject: [PATCH] start.cold/warm.s: Correct DSB instruction instances (#41) DSB requires that the barrier option be specified --- exosphere/start.cold.s | 2 +- exosphere/start.warm.s | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exosphere/start.cold.s b/exosphere/start.cold.s index 92b5cb003..1d8ea6b7b 100644 --- a/exosphere/start.cold.s +++ b/exosphere/start.cold.s @@ -49,7 +49,7 @@ __start_cold: mov x0, #3 msr rmr_el3, x0 isb - dsb + dsb sy /* Nintendo forgot to copy-paste the branch instruction below. */ _reset_wfi: wfi diff --git a/exosphere/start.warm.s b/exosphere/start.warm.s index a27fbf528..7e06ec7c3 100644 --- a/exosphere/start.warm.s +++ b/exosphere/start.warm.s @@ -49,7 +49,7 @@ __start_warm: mov x0, #3 msr rmr_el3, x0 isb - dsb + dsb sy /* Nintendo forgot to copy-paste the branch instruction below. */ _reset_wfi: wfi