forked from DS-Homebrew/TWiLightMenu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompile.bat
35 lines (35 loc) · 854 Bytes
/
compile.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@echo off
cd "booter"
make
copy "booter.nds" "../7zfile/BOOT.NDS"
copy "booter.nds" "../7zfile/CFW - SDNAND root/title/00030015/53524c41/content/00000000.app"
cd ..
cd "booter_fc"
make
copy "booter_fc.nds" "../7zfile/BOOT_FC.NDS"
cd ..
cd "rungame"
make
copy "rungame.nds" "../7zfile/CFW - SDNAND root/title/00030015/534c524e/content/00000000.app"
cd ..
cd "slot1launch"
make
copy "slot1launch.nds" "../7zfile/_nds/dsimenuplusplus/slot1launch.srldr"
cd ..
cd "title"
make
copy "title.nds" "../7zfile/_nds/dsimenuplusplus/main.srldr"
cd ..
cd "settings"
make
copy "settings.nds" "../7zfile/_nds/dsimenuplusplus/settings.srldr"
cd ..
cd "romsel_dsimenutheme"
make
copy "romsel_dsimenutheme.nds" "../7zfile/_nds/dsimenuplusplus/dsimenu.srldr"
cd ..
cd "romsel_r4theme"
make
copy "romsel_r4theme.nds" "../7zfile/_nds/dsimenuplusplus/r4menu.srldr"
cd ..
pause