From b47eb0ed049b4beb65be2683d6bb7403b37f8ead Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 23 Feb 2018 08:08:32 -0500 Subject: [PATCH] start.cold/warm.s: Correct DSB instruction instances 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