diff --git a/haxloader/source/start.s b/haxloader/source/start.s index 13e747d..d545d4d 100644 --- a/haxloader/source/start.s +++ b/haxloader/source/start.s @@ -24,14 +24,14 @@ .align 4 .global _start _start: - @ Change the stack pointer - mov sp, #0x27000000 - @ Disable interrupts mrs r0, cpsr orr r0, #0x1C0 msr cpsr_cx, r0 + @ Change the stack pointer + mov sp, #0x27000000 + @ Disable caches / MPU mrc p15, 0, r0, c1, c0, 0 @ read control register bic r0, #(1<<12) @ - instruction cache disable