Dolphin MMJR2 - RetroBIOS¶
Valid BIOS CRC32
ipl_ntsc:
- crc32: 6DAC1F2A, name: NTSC v1.0
- crc32: D5E6FEEA, name: NTSC v1.1
- crc32: 86573808, name: NTSC v1.2
- crc32: 667D0B64, name: MPAL v1.1 (Brazil)
ipl_pal:
- crc32: 4F319F43, name: PAL v1.0
- crc32: AD1B7F16, name: PAL v1.2
Technical notes
Android-only Dolphin fork published as the org.dolphinemu.mmjr package. The repositories it was developed and released from are gone; this reading is taken from a surviving copy carrying the whole maintainer commit line, up to the last one, which sets the version string to 2.0-18025. The tree is a selective merge of Dolphin Official carrying that label rather than a checkout of it: at Dolphin 5.0-18025 the memory subsystem has already moved behind Core::System, and here it has not, so no single Dolphin revision matches and no upstream pin is declared. ref: Source/Android/app/build.gradle:32, Source/Android/app/build.gradle:135
Two roots. The user directory is mmjr-revamp at the root of external storage. The Sys directory is extracted from the APK assets into the app's internal files directory, and a change of git revision deletes it and extracts it again, so nothing placed there survives an update. The build drops Resources and Themes from the assets copy. Paths below are relative to the user directory; entries with no path are read only from the Sys directory and name their location in their note. ref: Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/utils/DirectoryInitialization.java:103, Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/utils/DirectoryInitialization.java:138-155, Source/Core/Common/CommonPaths.h:23, Source/Android/jni/CMakeLists.txt:37-42
The GameCube boot ROM is looked up as GC/
Fonts follow the IPL. When a dump is present the Shift JIS and Windows-1252 fonts are read out of it at offsets 0x1aff00 and 0x1fcf00, for 0x4a24d and 0x2575 bytes; otherwise the standalone font files are loaded whole, and the bundled ones have different padding from the console fonts. ref: Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:102-131, Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:175-187, Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:200-241
DSP HLE is the default and reads dsp_coef.bin alone, for polyphase resampling coefficients, skipping any file that is not 0x1000 bytes. DSP LLE, reached by setting DSPHLE to False, loads both ROMs from GC/ in the user directory then Sys/GC/, rejects either at the wrong size, and a rejection aborts the emulation thread. Both are byte-swapped into memory and the pair is then hashed with adler32 against seven known combinations. ref: Source/Core/Core/Config/MainSettings.cpp:40, Source/Core/Core/HW/DSPLLE/DSPLLE.cpp:87-105, Source/Core/Core/HW/DSPLLE/DSPLLE.cpp:107-120, Source/Core/Core/HW/DSPHLE/UCodes/AX.cpp:42-69, Source/Core/Core/DSP/DSPCore.cpp:28-71, Source/Core/Core/Core.cpp:556-559
Wii emulation reads keys.bin from the NAND root every time the key store is built, and keeps the built-in keys when it is absent. SYSCONF is read through the emulated filesystem and rebuilt unless it is exactly 0x4000 bytes, and setting.txt is read for its serial number then written again from the emulated region settings. A missing SD card image is created at 128 MB. The three SSL files are hashed with sha256 against values held in the source and refused on a mismatch, once per session. ref: Source/Core/Core/IOS/IOSC.cpp:211, Source/Core/Core/IOS/IOSC.cpp:623-649, Source/Core/Core/SysConf.cpp:19, Source/Core/Core/SysConf.cpp:54-65, Source/Core/Core/Boot/Boot_BS2Emu.cpp:341-352, Source/Core/Core/IOS/SDIO/SDIOSlot0.cpp:90-107, Source/Core/Core/IOS/Network/SSL.cpp:135-181
The WiiConnect24 tree is copied out of Sys/Wii into the NAND at every Wii boot, one file at a time, and a file already present in the NAND is left alone. Copies placed under Wii/shared2/wc24 are therefore the ones that survive, and the shipped blanks only fill what is still missing. Dolphin itself reads nwc24msg.cfg and nwc24dl.bin back out of the NAND; the rest are there because titles expect them. ref: Source/Core/Core/WiiRoot.cpp:288-322, Source/Core/Core/WiiRoot.cpp:330-335, Source/Core/Core/IOS/Network/KD/NWC24Config.cpp:24-38, Source/Core/Core/IOS/Network/KD/NWC24DL.cpp:23-32
NAND import is compiled into the Android build and wired to both launchers. A BootMii image writes keys.bin and the three certificates into the NAND root, the certificates being carved out of the IOS13 content by searching for their DER headers. The keys have to be appended to the image: the callback that would ask for a separate OTP dump answers with an empty path here. ref: Source/Android/jni/WiiUtils.cpp:97-116, Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/main/MainActivity.java:240, Source/Core/DiscIO/NANDImporter.cpp:26-40, Source/Core/DiscIO/NANDImporter.cpp:189-256, Source/Core/DiscIO/NANDImporter.cpp:258-267
Every boot looks for a symbol map named after the running game ID, in Maps/ in the user directory alone, and reloads it whenever the running title changes. The game ID comes from the disc or TMD metadata, not from a debugger setting. No map ships with the build. ref: Source/Core/Core/Boot/Boot.cpp:373-399, Source/Core/Core/ConfigManager.cpp:153-162, Source/Core/Core/ConfigManager.cpp:189-199
30 files | 0 required, 30 optional | 28 in repo, 2 missing | 14 with HLE fallback
IPL.bin optional in repo HLE fallback north-america
GameCube boot ROM, NTSC-U directory
- Path:
GC/USA/IPL.bin - System: nintendo-gamecube
- Size: 2.0 MB
- Validation: crc32
- Source:
Source/Core/Core/Config/MainSettings.cpp:594-600,Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:105-113,Source/Core/Core/HW/EXI/EXI_DeviceIPL.h:43,Source/Core/Core/Boot/Boot.cpp:408-442,Source/Core/Core/Boot/Boot.cpp:444-449 - Platforms: batocera, emudeck, lakka, recalbox, retroarch, retropie, rocknix
- Read whole into a 2 MiB buffer with no size check, then descrambled from 0x100 for 0x1afe00 bytes. The crc32 gate runs when the IPL itself is booted and only warns; the four non-PAL dumps, the Brazilian MPAL one included, pass here without complaint.
IPL.bin optional in repo HLE fallback europe
GameCube boot ROM, PAL directory
- Path:
GC/EUR/IPL.bin - System: nintendo-gamecube
- Size: 2.0 MB
- Validation: crc32
- Source:
Source/Core/Core/Config/MainSettings.cpp:580-581,Source/Core/Core/Boot/Boot.cpp:444-449 - Platforms: batocera, emudeck, lakka, recalbox, retroarch, retropie, rocknix
- The two PAL dumps are the ones this directory takes without a mismatch warning.
IPL.bin optional in repo HLE fallback japan
GameCube boot ROM, NTSC-J directory
- Path:
GC/JAP/IPL.bin - System: nintendo-gamecube
- Size: 2.0 MB
- Validation: crc32
- Source:
Source/Core/Common/CommonPaths.h:34-35,Source/Core/Core/Config/MainSettings.cpp:574-575,Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:175-187 - Platforms: batocera, emudeck, lakka, recalbox, retroarch, retropie, rocknix
- JPN is defined alongside JAP but the boot ROM callers use the legacy default, so JAP is the directory read. FindIPLDump, which serves the font path, scans USA then EUR then JAP and stops at the first hit.
font_western.bin optional in repo HLE fallback
Windows-1252 font, loaded at 0x1fcf00
- Source:
Source/Core/Common/CommonPaths.h:117,Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:130,Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:200-241 - Platforms: lakka, retroarch, retropie
- Read from GC/ in the Sys directory, with no user directory fallback. Skipped in favour of the IPL dump whenever one is found.
font_japanese.bin optional in repo HLE fallback
Shift JIS font, loaded at 0x1aff00
- Source:
Source/Core/Common/CommonPaths.h:118,Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:129,Source/Core/Core/HW/EXI/EXI_DeviceIPL.cpp:200-241 - Platforms: lakka, retroarch, retropie
- Read from GC/ in the Sys directory, with no user directory fallback. Skipped in favour of the IPL dump whenever one is found.
dsp_rom.bin optional in repo HLE fallback
DSP instruction ROM
- Path:
GC/dsp_rom.bin - Size: 8.0 KB
- Adler32:
0x66f334fe - Validation: size
- Source:
Source/Core/Common/CommonPaths.h:120,Source/Core/Core/HW/DSPLLE/DSPLLE.cpp:87-105,Source/Core/Core/HW/DSPLLE/DSPLLE.cpp:107-120,Source/Core/Core/DSP/DSPCore.h:44,Source/Core/Core/DSP/DSPCore.cpp:28-71 - Platforms: lakka, retroarch, retropie
- DSP LLE only, and a file that is absent or not 8192 bytes fails initialisation, which aborts the emulation thread. The adler32 is taken over the byte-swapped image and the value here is the Nintendo pair; six replacement pairs are also accepted.
dsp_coef.bin optional in repo HLE fallback
DSP coefficient ROM
- Path:
GC/dsp_coef.bin - Size: 4.0 KB
- Adler32:
0xf3b93527 - Validation: size
- Source:
Source/Core/Common/CommonPaths.h:121,Source/Core/Core/HW/DSPLLE/DSPLLE.cpp:87-105,Source/Core/Core/HW/DSPLLE/DSPLLE.cpp:107-120,Source/Core/Core/HW/DSPHLE/UCodes/AX.cpp:42-69,Source/Core/Core/DSP/DSPCore.h:58 - Platforms: lakka, retroarch, retropie
- Read by DSP LLE alongside the instruction ROM, and by the AX ucode under HLE for polyphase resampling, which drops any file that is not 0x1000 bytes and plays on without it.
codehandler.bin optional in repo
Gecko code handler
- Source:
Source/Core/Common/CommonPaths.h:139,Source/Core/Core/GeckoCode.cpp:120-134,Source/Core/Core/GeckoCode.cpp:142-144 - Platforms: lakka, retroarch, retropie
- Read from the root of the Sys directory when cheats are enabled, and written into guest memory between the installer bounds; too large a file is refused and cheats stay off.
keys.bin optional in repo HLE fallback
BootMii key dump, console keys and identity
- Path:
Wii/keys.bin - System: nintendo-wii
- Size: 1.0 KB
- Validation: size
- Source:
Source/Core/Core/IOS/IOSC.cpp:92,Source/Core/Core/IOS/IOSC.cpp:211,Source/Core/Core/IOS/IOSC.cpp:623-649,Source/Core/DiscIO/NANDImporter.cpp:258-267 - Read at every key store construction, so on every Wii title. Supplies the console private key and signature, the MS and CA identifiers, the NAND key and HMAC and the backup key. A short read leaves the built-in keys in place, the structure being fixed at 0x400 bytes. NAND import writes this file from the keys appended to the image.
SYSCONF optional in repo HLE fallback
Wii system configuration
- Path:
Wii/shared2/sys/SYSCONF - System: nintendo-wii
- Size: 16.0 KB
- Validation: size
- Source:
Source/Core/Common/CommonPaths.h:102,Source/Core/Core/SysConf.cpp:19,Source/Core/Core/SysConf.cpp:54-65 - Opened through the emulated filesystem and accepted only at 0x4000 bytes; anything else is replaced by a freshly generated one.
setting.txt optional in repo HLE fallback
Wii region and language settings
- Path:
Wii/title/00000001/00000002/data/setting.txt - System: nintendo-wii
- Size: 256 B
- Validation: size
- Source:
Source/Core/Common/CommonPaths.h:137,Source/Core/Common/SettingsHandler.h:21-26,Source/Core/Core/Boot/Boot_BS2Emu.cpp:341-353 - Read for its serial number and model at Wii boot, then written again from the emulated region settings. The read fills a fixed 0x100 byte buffer, so a shorter file yields nothing.
WiiSD.raw optional in repo HLE fallback
Wii SD card image
- Path:
Load/WiiSD.raw - System: nintendo-wii
- Source:
Source/Core/Common/CommonPaths.h:134,Source/Core/Common/FileUtil.cpp:998,Source/Core/Core/Config/MainSettings.cpp:289,Source/Core/Core/IOS/SDIO/SDIOSlot0.cpp:90-107 - Opened read-write when the SD device is opened; a 128 MB image is created when the file is missing. The configured override is empty by default, so the file stays under Load/.
clientca.pem optional in repo HLE fallback
console SSL client certificate
- Path:
Wii/clientca.pem - System: nintendo-wii
- SHA256:
229ec678525e... - Validation: sha256
- Source:
Source/Core/Core/IOS/Network/SSL.cpp:135-138,Source/Core/Core/IOS/Network/SSL.cpp:148-181,Source/Core/Core/IOS/Network/SSL.cpp:383-390,Source/Core/DiscIO/NANDImporter.cpp:224 - Read from the NAND root when a title asks for the built-in client certificate, and refused when the sha256 does not match the value in the source. One panic alert per IOS instance covers this file and the key together. NAND import carves it out of the IOS13 content by its DER header.
clientcakey.pem optional in repo HLE fallback
console SSL client private key
- Path:
Wii/clientcakey.pem - System: nintendo-wii
- SHA256:
723be9b32c3a... - Validation: sha256
- Source:
Source/Core/Core/IOS/Network/SSL.cpp:139-142,Source/Core/Core/IOS/Network/SSL.cpp:383-395,Source/Core/DiscIO/NANDImporter.cpp:225 - Read alongside the client certificate and parsed as the private key for it; either one failing leaves the connection without a client certificate.
rootca.pem optional in repo HLE fallback
console SSL root CA certificate
- Path:
Wii/rootca.pem - System: nintendo-wii
- SHA256:
c5b0f8dfcec6... - Validation: sha256
- Source:
Source/Core/Core/IOS/Network/SSL.cpp:143-146,Source/Core/Core/IOS/Network/SSL.cpp:449-455,Source/Core/DiscIO/NANDImporter.cpp:226 - Read when a title asks for the built-in root CA, on the same sha256 check as the client pair.
nand.bin optional in repo
BootMii NAND backup
- System: nintendo-wii
- Size: 528.0 MB / 528.0 MB
- Validation: size
- Source:
Source/Android/jni/WiiUtils.cpp:97-116,Source/Core/DiscIO/NANDImporter.cpp:19,Source/Core/DiscIO/NANDImporter.cpp:26-40,Source/Core/DiscIO/NANDImporter.cpp:42-72 - Chosen through the app's import entry, not read from a fixed location. Accepted at the bare image size or that plus the 0x400 byte key block, and refused at any other. The pages are read 0x800 at a time with the 0x40 byte ECC block skipped. Import writes keys.bin and the three certificates, then unpacks the filesystem.
mii.bin optional missing
Mii database imported into the emulated Wii Remote
- Path:
Wii/mii.bin - System: nintendo-wii
- Source:
Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:156-165 - Read from the NAND root when an emulated Wii Remote is reset, and copied into both Mii blocks of its EEPROM. Absent, the EEPROM keeps its default contents.
nwc24msg.cfg optional in repo
WiiConnect24 account configuration
- Path:
Wii/shared2/wc24/nwc24msg.cfg - System: nintendo-wii
- Size: 1.0 KB
- Validation: size
- Source:
Source/Core/Core/IOS/Network/KD/NWC24Config.cpp:17,Source/Core/Core/IOS/Network/KD/NWC24Config.cpp:24-38,Source/Core/Core/IOS/Network/KD/NWC24Config.cpp:90-117,Source/Core/Core/IOS/Network/KD/NWC24Config.h:87-109 - Read as one packed structure, so a shorter file fails the read and a default configuration is generated and written back. A file that reads is then checked for the WcCf magic, its own checksum, an id generation under 0x20 and version 8, each mismatch logged.
nwc24dl.bin optional in repo
WiiConnect24 download task list
- Path:
Wii/shared2/wc24/nwc24dl.bin - System: nintendo-wii
- Size: 62.0 KB
- Validation: size
- Source:
Source/Core/Core/IOS/Network/KD/NWC24DL.cpp:16,Source/Core/Core/IOS/Network/KD/NWC24DL.cpp:23-32,Source/Core/Core/IOS/Network/KD/NWC24DL.cpp:34-50,Source/Core/Core/IOS/Network/KD/NWC24DL.h:43,Source/Core/Core/IOS/Network/KD/NWC24DL.h:111-116 - Read as one packed structure of a 128 byte header plus 120 records and 120 entries, so a shorter file fails the read and leaves the list empty. A file that reads is checked for the WcDl magic and version 1.
nwc24fl.bin optional in repo
WiiConnect24 friend list
- Path:
Wii/shared2/wc24/nwc24fl.bin - System: nintendo-wii
- Source:
Source/Core/Core/WiiRoot.cpp:288-322,Source/Core/Core/WiiRoot.cpp:330-335 - Placed in the NAND by the Sys/Wii copy and read from there by the running title. Titles such as Mario Kart Wii expect the WiiConnect24 files to exist even on a first launch, which is why the copy happens without the system menu ever running.
nwc24fls.bin optional in repo
WiiConnect24 friend list backup
- Path:
Wii/shared2/wc24/nwc24fls.bin - System: nintendo-wii
- Source:
Source/Core/Core/WiiRoot.cpp:288-322,Source/Core/Core/WiiRoot.cpp:334 - Placed in the NAND by the Sys/Wii copy, which never overwrites a file the NAND already holds.
nwc24msg.cbk optional in repo
WiiConnect24 account configuration backup
- Path:
Wii/shared2/wc24/nwc24msg.cbk - System: nintendo-wii
- Source:
Source/Core/Core/WiiRoot.cpp:288-322,Source/Core/Core/WiiRoot.cpp:334 - Placed in the NAND by the Sys/Wii copy, which never overwrites a file the NAND already holds.
misc.bin optional in repo
WiiConnect24 miscellaneous state
- Path:
Wii/shared2/wc24/misc.bin - System: nintendo-wii
- Source:
Source/Core/Core/WiiRoot.cpp:288-322,Source/Core/Core/IOS/Network/KD/NetKDTime.cpp:34 - Placed in the NAND by the Sys/Wii copy. The time device carries a note about writing it but no code path does.
wc24recv.ctl optional in repo
WiiConnect24 receive mailbox index
- Path:
Wii/shared2/wc24/mbox/wc24recv.ctl - System: nintendo-wii
- Source:
Source/Core/Core/WiiRoot.cpp:288-322 - Placed in the NAND by the Sys/Wii copy, which recurses into mbox and never overwrites a file the NAND already holds.
wc24recv.mbx optional in repo
WiiConnect24 receive mailbox
- Path:
Wii/shared2/wc24/mbox/wc24recv.mbx - System: nintendo-wii
- Source:
Source/Core/Core/WiiRoot.cpp:288-322,Data/Sys/Wii/shared2/wc24/mbox/Readme.txt - Placed in the NAND by the Sys/Wii copy. The bundled file is a stub; the note shipped beside it gives 0x700000 as the size on a console.
wc24send.ctl optional in repo
WiiConnect24 send mailbox index
- Path:
Wii/shared2/wc24/mbox/wc24send.ctl - System: nintendo-wii
- Source:
Source/Core/Core/WiiRoot.cpp:288-322 - Placed in the NAND by the Sys/Wii copy, which recurses into mbox and never overwrites a file the NAND already holds.
wc24send.mbx optional in repo
WiiConnect24 send mailbox
- Path:
Wii/shared2/wc24/mbox/wc24send.mbx - System: nintendo-wii
- Source:
Source/Core/Core/WiiRoot.cpp:288-322,Data/Sys/Wii/shared2/wc24/mbox/Readme.txt - Placed in the NAND by the Sys/Wii copy. The bundled file is a stub; the note shipped beside it gives 0x200000 as the size on a console.
Readme.txt optional in repo
note on the truncated mailboxes, copied into the NAND
- Path:
Wii/shared2/wc24/mbox/Readme.txt - System: nintendo-wii
- Size: 103 B
- SHA256:
e5a888912968... - Source:
Source/Core/Core/WiiRoot.cpp:291-319,Data/Sys/Wii/shared2/wc24/mbox/Readme.txt - The Sys/Wii copy walks the directory and takes every entry, so this file lands in the NAND with the mailboxes. It records the console sizes of the two mbx files. The hash names the file carried in the source tree, the only form it has, and is not a check the code performs; without it the name alone matches any readme.
wiitdb.txt optional in repo
user title database
- Path:
Load/wiitdb.txt - Aliases:
titles.txt - Source:
Source/Core/Core/TitleDatabase.cpp:29-51,Source/Core/Core/TitleDatabase.cpp:54-58,Source/Core/Core/TitleDatabase.cpp:63-79 - One title id equals name pair per line, ids of four characters and up. titles.txt is read only when wiitdb.txt yields nothing. Overlays the per-language databases shipped in the Sys directory, which cover ten languages; the Portuguese and Russian files also present there are never registered.
mios-ipl.map optional missing
MIOS symbol map
- Path:
Maps/mios-ipl.map - Source:
Source/Core/Core/IOS/MIOS.cpp:67-72 - Read from Maps/ in the user directory when MIOS starts, and a successful load re-applies the HLE function patches against the symbols it names.
Generated on 2026-08-23T16:12:06Z