Skip to content

Instantly share code, notes, and snippets.

@Prince-of-sea
Created November 7, 2022 08:12
Show Gist options
  • Select an option

  • Save Prince-of-sea/6a5ca83162325077ade8642aa35ba978 to your computer and use it in GitHub Desktop.

Select an option

Save Prince-of-sea/6a5ca83162325077ade8642aa35ba978 to your computer and use it in GitHub Desktop.
3DS「くにおくん熱血コンプリート ファミコン編」ROMぶっこ抜き支援
@echo off
cd %~dp0
rem 本batをkunio01.bin~kunio11_prg.binと同一の適当なフォルダ内に移動後、起動
echo 4E 45 53 1A 08 00 21 00 00 00 00 00 00 00 00 00>kunio01_header.txt
echo 4E 45 53 1A 08 10 10 00 00 00 00 00 00 00 00 00>kunio02_header.txt
echo 4E 45 53 1A 08 10 41 00 00 00 00 00 00 00 00 00>kunio03_header.txt
echo 4E 45 53 1A 08 10 40 00 00 00 00 00 00 00 00 00>kunio04_header.txt
echo 4E 45 53 1A 08 10 40 00 00 00 00 00 00 00 00 00>kunio05_header.txt
echo 4E 45 53 1A 08 10 42 00 00 00 00 00 00 00 00 00>kunio06_header.txt
echo 4E 45 53 1A 08 10 41 00 00 00 00 00 00 00 00 00>kunio07_header.txt
echo 4E 45 53 1A 08 10 41 00 00 00 00 00 00 00 00 00>kunio08_header.txt
echo 4E 45 53 1A 08 10 40 00 00 00 00 00 00 00 00 00>kunio09_header.txt
echo 4E 45 53 1A 08 10 40 00 00 00 00 00 00 00 00 00>kunio10_header.txt
echo 4E 45 53 1A 08 10 40 00 00 00 00 00 00 00 00 00>kunio11_header.txt
certutil -f -decodehex kunio01_header.txt kunio01_header.bin
certutil -f -decodehex kunio02_header.txt kunio02_header.bin
certutil -f -decodehex kunio03_header.txt kunio03_header.bin
certutil -f -decodehex kunio04_header.txt kunio04_header.bin
certutil -f -decodehex kunio05_header.txt kunio05_header.bin
certutil -f -decodehex kunio06_header.txt kunio06_header.bin
certutil -f -decodehex kunio07_header.txt kunio07_header.bin
certutil -f -decodehex kunio08_header.txt kunio08_header.bin
certutil -f -decodehex kunio09_header.txt kunio09_header.bin
certutil -f -decodehex kunio10_header.txt kunio10_header.bin
certutil -f -decodehex kunio11_header.txt kunio11_header.bin
copy /b kunio01_header.bin+kunio01.bin "Nekketsu Kouha Kunio-kun (Japan) (Nekketsu Complete).nes"
copy /b kunio02_header.bin+kunio02_prg.bin+kunio02_chr.bin "Nekketsu Koukou Dodgeball-bu (Japan) (Nekketsu Complete).nes"
copy /b kunio03_header.bin+kunio03_prg.bin+kunio03_chr.bin "Downtown - Nekketsu Monogatari (Japan) (Nekketsu Complete).nes"
copy /b kunio04_header.bin+kunio04_prg.bin+kunio04_chr.bin "Nekketsu Koukou Dodgeball-bu - Soccer Hen (Japan) (Nekketsu Complete).nes"
copy /b kunio05_header.bin+kunio05_prg.bin+kunio05_chr.bin "Downtown - Nekketsu Koushinkyoku - Soreyuke Daiundoukai (Japan) (Nekketsu Complete).nes"
copy /b kunio06_header.bin+kunio06_prg.bin+kunio06_chr.bin "Downtown Special - Kunio-kun no Jidaigeki Da yo Zenin Shuugou! (Japan) (Nekketsu Complete).nes"
copy /b kunio07_header.bin+kunio07_prg.bin+kunio07_chr.bin "Ike Ike! Nekketsu Hockey-bu - Subette Koronde Dairantou (Japan) (Nekketsu Complete).nes"
copy /b kunio08_header.bin+kunio08_prg.bin+kunio08_chr.bin "Bikkuri Nekketsu Shin Kiroku! - Harukanaru Kin Medal (Japan) (Nekketsu Complete).nes"
copy /b kunio09_header.bin+kunio09_prg.bin+kunio09_chr.bin "Nekketsu Kakutou Densetsu (Japan) (Nekketsu Complete).nes"
copy /b kunio10_header.bin+kunio10_prg.bin+kunio10_chr.bin "Kunio-kun no Nekketsu Soccer League (Japan) (Nekketsu Complete).nes"
copy /b kunio11_header.bin+kunio11_prg.bin+kunio11_chr.bin "Nekketsu! Street Basket - Ganbare Dunk Heroes (Japan) (Nekketsu Complete).nes"
del /q kunio01_header.txt
del /q kunio02_header.txt
del /q kunio03_header.txt
del /q kunio04_header.txt
del /q kunio05_header.txt
del /q kunio06_header.txt
del /q kunio07_header.txt
del /q kunio08_header.txt
del /q kunio09_header.txt
del /q kunio10_header.txt
del /q kunio11_header.txt
del /q kunio01_header.bin
del /q kunio02_header.bin
del /q kunio03_header.bin
del /q kunio04_header.bin
del /q kunio05_header.bin
del /q kunio06_header.bin
del /q kunio07_header.bin
del /q kunio08_header.bin
del /q kunio09_header.bin
del /q kunio10_header.bin
del /q kunio11_header.bin
md roms
move *.nes roms/
pause
exit /b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment