mirror of
https://github.com/ApacheThunder/NTR_Launcher.git
synced 2025-06-19 03:25:38 -04:00

* Added DSOnei kernel to included nds files for Stage2 menu. * Added N-Card rom dump to included nds files for Stage2 menu. * Added CycloDS, and DSTWo bootloader dumps to included nds files for Stage2 menu. * DSTwo now boots correctly from cart launcher. * R4 SDHC Gold and other similar DEMON time bomb DSTTi clones now boot correctly from cart launcher. * Added back option for enabling/disabling TWL ram. * Added fixes to allow DS only carts to run with TWL ram enabled. * Initial modcrypt code added for TWL carts. Currently works in emulation however TWL carts will fail to boot on hardware (when twl mode, ram, etc is enabled). * If TWL mode and ram is enabled, cart loader will now load the DSi extended binaries into ram. Currently however they will only boot in emulation. Have not resolved why it's not working on hardware yet. * Stage2 menu now allowed to load dsi extended binaries of SRLs if TWL mode and TWL ram is enabled. Booting rom dumps as a method of booting into TWL carts is confirmed working. At least for System Flaw it does. :D * Despite the improvents Acekard 2i still appears to require using the stage2 menu to boot into. * Fixes that allowed Demon timebomb carts to boot from cart launcher/autoboot may allow other non working carts to work. Further testing needed.
82 lines
2.0 KiB
ArmAsm
82 lines
2.0 KiB
ArmAsm
/*
|
|
Copyright 2015 Dave Murphy (WinterMute)
|
|
|
|
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 2 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/>.
|
|
|
|
*/
|
|
.text
|
|
.align 4
|
|
|
|
.arm
|
|
@---------------------------------------------------------------------------------
|
|
.global arm7_reset
|
|
.type arm7_reset STT_FUNC
|
|
@---------------------------------------------------------------------------------
|
|
arm7_reset:
|
|
@---------------------------------------------------------------------------------
|
|
mrs r0, cpsr @ cpu interrupt disable
|
|
orr r0, r0, #0x80 @ (set i flag)
|
|
msr cpsr, r0
|
|
|
|
ldr r0, =0x380FFFC @ irq vector
|
|
mov r1, #0
|
|
str r1, [r0]
|
|
sub r0, r0, #4 @ IRQ1 Check Bits
|
|
str r1, [r0]
|
|
sub r0, r0, #4 @ IRQ2 Check Bits
|
|
str r1, [r0]
|
|
|
|
bic r0, r0, #0x7f
|
|
|
|
msr cpsr_c, #0xd3 @ svc mode
|
|
mov sp, r0
|
|
sub r0, r0, #64
|
|
msr cpsr_c, #0xd2 @ irq mode
|
|
mov sp, r0
|
|
sub r0, r0, #512
|
|
msr cpsr_c, #0xdf @ system mode
|
|
mov sp, r0
|
|
|
|
mov r12, #0x04000000
|
|
add r12, r12, #0x180
|
|
|
|
@ while (ipcRecvState() != ARM9_RESET);
|
|
mov r0, #2
|
|
bl waitsync
|
|
@ ipcSendState(ARM7_RESET)
|
|
mov r0, #0x200
|
|
strh r0, [r12]
|
|
|
|
@ while(ipcRecvState() != ARM9_BOOT);
|
|
mov r0, #0
|
|
bl waitsync
|
|
@ ipcSendState(ARM7_BOOT)
|
|
strh r0, [r12]
|
|
|
|
ldr r0,=0x2FFFE34
|
|
|
|
ldr r0,[r0]
|
|
bx r0
|
|
|
|
.pool
|
|
|
|
@---------------------------------------------------------------------------------
|
|
waitsync:
|
|
@---------------------------------------------------------------------------------
|
|
ldrh r1, [r12]
|
|
and r1, r1, #0x000f
|
|
cmp r0, r1
|
|
bne waitsync
|
|
bx lr
|