2017-06-05 02:02:04 +02:00
|
|
|
@ This file is part of Luma3DS
|
2019-02-25 02:04:32 +01:00
|
|
|
@ Copyright (C) 2016-2019 Aurora Wright, TuxSH
|
2017-06-05 02:02:04 +02:00
|
|
|
@
|
|
|
|
@ This program is free software: you can redistribute it and/or modify
|
|
|
|
@ it under the terms of the GNU General Public License as published by
|
|
|
|
@ the Free Software Foundation, either version 3 of the License, or
|
|
|
|
@ (at your option) any later version.
|
|
|
|
@
|
|
|
|
@ This program is distributed in the hope that it will be useful,
|
|
|
|
@ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
@ GNU General Public License for more details.
|
|
|
|
@
|
|
|
|
@ You should have received a copy of the GNU General Public License
|
|
|
|
@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
@
|
|
|
|
@ Additional Terms 7.b and 7.c of GPLv3 apply to this file:
|
|
|
|
@ * Requiring preservation of specified reasonable legal notices or
|
|
|
|
@ author attributions in that material or in the Appropriate Legal
|
|
|
|
@ Notices displayed by works containing it.
|
|
|
|
@ * Prohibiting misrepresentation of the origin of that material,
|
|
|
|
@ or requiring that modified versions of such material be marked in
|
|
|
|
@ reasonable ways as different from the original version.
|
|
|
|
|
|
|
|
.section .text.start
|
|
|
|
.balign 4
|
|
|
|
.global _start
|
|
|
|
_start:
|
2017-06-08 21:35:41 +02:00
|
|
|
b start
|
2017-06-13 02:00:41 +02:00
|
|
|
b startPhys
|
|
|
|
|
|
|
|
b _bindSGI0Hook
|
|
|
|
b configHook
|
|
|
|
|
|
|
|
b undefinedInstructionHandler
|
|
|
|
b svcHandler
|
|
|
|
b prefetchAbortHandler
|
|
|
|
b dataAbortHandler
|
|
|
|
|
|
|
|
.word __end__
|
|
|
|
.word kExtParameters
|
|
|
|
.word 1 @ enableUserExceptionHandlersForCPUExc
|
2017-06-08 21:35:41 +02:00
|
|
|
|
2017-06-14 19:35:03 +02:00
|
|
|
b KThread__DebugReschedule
|
2017-06-08 21:35:41 +02:00
|
|
|
start:
|
2017-06-13 02:00:41 +02:00
|
|
|
@ Only core0 executes this, the other cores are running coreBarrier
|
|
|
|
|
|
|
|
@ Skipped instruction:
|
|
|
|
str r1, [r4, #0x8]
|
|
|
|
|
|
|
|
push {r0-r12, lr}
|
|
|
|
|
2018-05-23 03:16:32 +02:00
|
|
|
bl __libc_init_array
|
|
|
|
|
2017-06-14 01:29:55 +02:00
|
|
|
sub r0, r4, #8
|
2017-06-14 19:35:03 +02:00
|
|
|
sub r1, r8, #0x8000
|
2017-06-13 02:00:41 +02:00
|
|
|
bl main
|
|
|
|
|
|
|
|
pop {r0-r12, pc}
|
|
|
|
|
|
|
|
startPhys:
|
|
|
|
push {r0-r12, lr}
|
|
|
|
mrc p15, 0, r0, c0, c0, 5 @ CPUID register
|
|
|
|
and r0, #3
|
|
|
|
mov r1, r2
|
|
|
|
bl relocateAndSetupMMU
|
|
|
|
pop {r0-r12, lr}
|
|
|
|
mov r12, #0x20000000 @ instruction that has been patched
|
|
|
|
bx lr
|
|
|
|
|
|
|
|
_bindSGI0Hook:
|
|
|
|
push {r0-r12, lr}
|
|
|
|
bl bindSGI0Hook
|
|
|
|
pop {r0-r12, pc}
|