Skip to content
This repository was archived by the owner on Apr 15, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions PackEnglishV12/HackingToolkit9DS.bat
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ echo.
echo ##################################################
echo # #
echo # HackingToolkit9DS by Asia81 #
echo # Updated: 02/20/2018 (V12) #
echo # Updated: 02/02/2022 (V13) #
echo # #
echo ##################################################
echo.
Expand Down Expand Up @@ -154,6 +154,8 @@ goto:TitleMenu
cls
echo.
set /p OutputRomCIA="Write your output .CIA filename (without extension) : "
set /p TitleVer="Original title version (write 0 if you don't know) : "
set /p MajorVer="Original major version (write 0 if you don't know) : "
set /p MinorVer="Original minor version (write 0 if you don't know) : "
set /p MicroVer="Original micro version (write 0 if you don't know) : "
cls
Expand Down Expand Up @@ -181,7 +183,7 @@ for %%j in (Custom*.bin) do if %%~zj LEQ 20000 del %%j >NUL 2>NUL
if exist CustomPartition0.bin (SET ARG0=-content CustomPartition0.bin:0:0x00) >NUL 2>NUL
if exist CustomPartition1.bin (SET ARG1=-content CustomPartition1.bin:1:0x01) >NUL 2>NUL
if exist CustomPartition2.bin (SET ARG2=-content CustomPartition2.bin:2:0x02) >NUL 2>NUL
"makerom.exe" -target p -ignoresign -f cia %ARG0% %ARG1% %ARG2% -minor %MinorVer% -micro %MicroVer% -o %OutputRomCIA%_Edited.cia >NUL 2>NUL
"makerom.exe" -target p -ignoresign -f cia %ARG0% %ARG1% %ARG2% -ver %TitleVer% -major %MajorVer% -minor %MinorVer% -micro %MicroVer% -o %OutputRomCIA%_Edited.cia >NUL 2>NUL
echo Creation done!
echo.
pause
Expand Down
Binary file modified PackEnglishV12/makerom.exe
Binary file not shown.
6 changes: 4 additions & 2 deletions PackFrancaisV12/HackingToolkit9DS.bat
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ echo.
echo ##################################################
echo # #
echo # HackingToolkit9DS par Asia81 #
echo # Mis � jour le 20/02/2018 (V12) #
echo # Mis � jour le 02/02/2022 (V13) #
echo # #
echo ##################################################
echo.
Expand Down Expand Up @@ -154,6 +154,8 @@ goto:TitleMenu
cls
echo.
set /p OutputRomCIA="Entrez le nom de sortie de votre fichier .CIA (sans extension) : "
set /p TitleVer="Version title originelle (entrez 0 si vous ne savez pas) : "
set /p MajorVer="Version major originelle (entrez 0 si vous ne savez pas) : "
set /p MinorVer="Version minor originelle (entrez 0 si vous ne savez pas) : "
set /p MicroVer="Version micro originelle (entrez 0 si vous ne savez pas) : "
cls
Expand Down Expand Up @@ -181,7 +183,7 @@ for %%j in (Custom*.bin) do if %%~zj LEQ 20000 del %%j >NUL 2>NUL
if exist CustomPartition0.bin (SET ARG0=-content CustomPartition0.bin:0:0x00) >NUL 2>NUL
if exist CustomPartition1.bin (SET ARG1=-content CustomPartition1.bin:1:0x01) >NUL 2>NUL
if exist CustomPartition2.bin (SET ARG2=-content CustomPartition2.bin:2:0x02) >NUL 2>NUL
"makerom.exe" -target p -ignoresign -f cia %ARG0% %ARG1% %ARG2% -minor %MinorVer% -micro %MicroVer% -o %OutputRomCIA%_Edited.cia >NUL 2>NUL
"makerom.exe" -target p -ignoresign -f cia %ARG0% %ARG1% %ARG2% -ver %TitleVer% -major %MajorVer% -minor %MinorVer% -micro %MicroVer% -o %OutputRomCIA%_Edited.cia >NUL 2>NUL
echo Compilation termin�e !
echo.
pause
Expand Down
Binary file modified PackFrancaisV12/makerom.exe
Binary file not shown.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ Before report an issue, be sure:
- To write or don't write the extension of your file when specified.
- To have installed the setup package for your language (SetupXX.exe file).

Changelog V13 (02/02/2022)
- Add title version and major version for rebuilding CIA.
- Update makerom.exe to v0.18.

Changelog V12 (02/20/2018)
- Fixed encrypted CIA rebuild process.
- Removed installation check.
Expand Down