mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-10 06:01:52 +00:00
59 lines
1.6 KiB
ArmAsm
59 lines
1.6 KiB
ArmAsm
|
/*
|
||
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify it
|
||
|
* under the terms and conditions of the GNU General Public License,
|
||
|
* version 2, as published by the Free Software Foundation.
|
||
|
*
|
||
|
* This program is distributed in the hope 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/>.
|
||
|
*/
|
||
|
|
||
|
|
||
|
|
||
|
.section .crt0._ZN3ams6nxboot6loader5StartEv, "ax", %progbits
|
||
|
.arm
|
||
|
.align 5
|
||
|
.global _ZN3ams6nxboot6loader5StartEv
|
||
|
.type _ZN3ams6nxboot6loader5StartEv, %function
|
||
|
_ZN3ams6nxboot6loader5StartEv:
|
||
|
/* Switch to system mode, mask all interrupts, clear all flags */
|
||
|
msr cpsr_cxsf, #0xDF
|
||
|
|
||
|
/* Relocate loader stub. */
|
||
|
ldr r0, =_ZN3ams6nxboot6loader5StartEv
|
||
|
adr r1, _ZN3ams6nxboot6loader5StartEv
|
||
|
ldr r2, =__loader_stub_lma__
|
||
|
sub r2, r2, r0
|
||
|
add r2, r2, r1
|
||
|
|
||
|
ldr r3, =__loader_stub_start__
|
||
|
ldr r4, =__loader_stub_end__
|
||
|
sub r4, r4, r3
|
||
|
0:
|
||
|
ldmia r2!, {r5-r12}
|
||
|
stmia r3!, {r5-r12}
|
||
|
subs r4, #0x20
|
||
|
bne 0b
|
||
|
|
||
|
/* Set the stack pointer */
|
||
|
ldr sp, =0x40001000
|
||
|
mov fp, #0
|
||
|
|
||
|
/* Generate arguments. */
|
||
|
ldr r3, =program_lz4
|
||
|
ldr r4, =program_lz4_end
|
||
|
sub r4, r4, r3
|
||
|
sub r3, r3, r0
|
||
|
add r3, r3, r1
|
||
|
mov r0, r3
|
||
|
mov r1, r4
|
||
|
|
||
|
/* Jump to the loader stub. */
|
||
|
ldr r3, =_ZN3ams6nxboot6loader20UncompressAndExecuteEPKvj
|
||
|
bx r3
|