ROM Header
Standard header
The following table shows the standard contents of the ROM header. Most of the structure of the header is defined by the IPL3 routines commonly used in commercial games (which are actually contained in the ROM itself); only a few fields are accessed by IPL2 (which is burned in PIF ROM) and are thus hard-coded for all possible valid N64 ROMs.
Offset | Size | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0x00 | 0x4 | PI BSD DOM1 Configuration Flags | These flags are used by IPL2 to configure access to the ROM (which is mapped in the PI DOM1 space, see memory map). IPL2 first configure the PI to its slowest speed to be able to read these 4 bytes, and then use them to configure the correct speed to access the ROM.
If you are an emulator author, please make sure that your emulator can load a ROM with arbitrary values in these first 4 bytes, and assume the ROM is in plain "big-endian" format (not byte swapped, not endian swapped). All modern homebrew ROMs should ship in plain format anyway, as the other formats are obsolete and strongly discouraged. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x04 | 0x4 | Clock Rate | Constant value used by libultra versions 2.0I and earlier, to naively calculate how much real-time has passed based on the CPU's Count register.
The value is masked by 0xFFFFFFF0, then multiplied by 0.75 to account for the CPU clock's multiplier (1.5x) and that the Count register increments every 2 CPU cycles. However, if the masked value equals zero, libultra defaults to 0x03B9ACA0 (62,500,000) before multiplying by 0.75. All known ROMs, except those listed below, have this field set to 0x0000000F.
Using Doom 64 as an example, 0x03A07F5F is masked to 0x03A07F50 (60,850,000), and then multiplied by 0.75 equals 0x02B85F7C (45,637,500). Keep in mind that there is no known way for software to change the clock frequency used by either the RCP or CPU. So if/when games use the Count register divided by 46,875,000 to measure a real-time second, the calculated result will be inaccurate. Polprzewodnikowy from the N64brew Discord, experimented with Doom 64 and Star Fox 64 on real hardware. They found that increasing this value increases the delay before the copyright screen or Nintendo logo (respectively) shows up on screen. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x08 | 0x4 | Boot Address | Initial PC in RDRAM. IPL3 will DMA 1 MiB of ROM code from offset 0x1000 to this address when it has finished initializing the hardware, and then jump here to boot the ROM. The most common value for this field is 0x80000400.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x0C | 0x4 | Libultra Version | These 4 bytes are meant to indicate the version of the libultra SDK the ROM was compiled with.
For instance, libultra version "2.0L" is reported as
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x10 | 0x8 | Check Code | 64-bit check code calculated on 1 Mbyte of ROM contents starting from offset 0x1000 (after IPL3). This check code is computed with a custom algorithm implemented by IPL3 that verifies the integrity of the ROM before booting it. If the check code doesn't match, IPL3 refuses to boot the ROM and hangs the console.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x18 | 0x8 | Reserved | This field is unused by Nintendo, but has seen usage by other developers.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x20 | 0x14 | Game Title | String that contains the name of the game. The encoding is usually either ASCII or JIS X 0201 (a subset of Shift-JIS). Padding Is usually performed with 0x20 (ASCII space). | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x34 | 0x7 | Reserved | This field is unused by Nintendo, but saw accidental usage in the Tommy Thunder prototype ROM, where the first 4 bytes are set to 0x20. This is possibly due to the developers thinking that the game title field was 0x18 bytes rather than 0x14. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x3B | 0x4 | Game Code | The game code is 4 ASCII characters that are split up into 3 parts - the category code, the unique code and the destination code.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x3F | 0x1 | ROM Version | This byte is used to identify the version of the game. Normally the value is 0 for the first version, 1 for the second and so on. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x40 | 0xFC0 | IPL3 | This area contains the IPL3 boot code. Each ROM ships its own IPL3 that is meant to work together with the CIC installed in the ROM. Before running IPL3, IPL2 checks its checksum also using a seed coming from the CIC, which binds each IPL3 code to a specific version of CIC. |
Advanced Homebrew ROM Header
The Advanced Homebrew ROM Header format is a convention that has been agreed upon in the N64 homebrew community to add additional information in the header, using unused fields. The goal of this convention is to let homebrew ROMs declare the correct saveype and controllers that are expected to play the game. The format has been introduced by the EverDrive 64 flashcard and has been later enhanced by the homebrew community.
This is useful because emulators normally work using a game database which matches games using checksum to find out which savetype and controllers are expected by the game, to help gamers play the game. For instance, when a N64 emulator detects that a Perfect Dark ROM is loaded, it will automatically emulate a 16Kb EEPROM to save the game (that was the original support present in the physical cartridge for the original game), and will possibly also emulate a preinstalled Transfer PAK, as the accessory can be used with the game. This is done purely by matching the Perfect Dark ROM checksum in a database, so a homebrew game, which would probably not be present in game databases, would suffer from non-working saves and possibly wouldn't be able to use special controllers or accessories.
Instead, by using the Advanced Hombrew ROM Header, emulators can automatically configure the required emulated hardware as expected without having to keep any additional database, by simply decoding specific fields of the ROM header. In addition to emulators, also development flashcarts and loaders can use this format to automatically configure the correct savetype when the ROM is loaded.
Homebrew ROM Header special flags
Offset | Bytes | Name | Description | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0x34 | 1 | Controller 1 | This byte contains the suggested / expected controller hardware that should be attached to port 1.
Values 0x01-0x7F indicate a standard N64 controller, possibly with some installed pak. Values 0x80-0xFE indicate a different kind of controller.
| ||||||||||||||||||||
0x35 | 1 | Controller 2 | This byte contains the suggested / expected controller hardware that should be attached to port 2. See byte 0x34 for more information. | ||||||||||||||||||||
0x36 | 1 | Controller 3 | This byte contains the suggested / expected controller hardware that should be attached to port 3. See byte 0x34 for more information. | ||||||||||||||||||||
0x37 | 1 | Controller 4 | This byte contains the suggested / expected controller hardware that should be attached to port 4. See byte 0x34 for more information. | ||||||||||||||||||||
0x3C | 2 | Game ID | This must contain the ASCII characters "ED". It is used as an ID to identify that the Advanced Homebrew ROM header format Is being used by this ROM. | ||||||||||||||||||||
0x3F | 1 | Savetype | This byte mostly contains information on the savetype. It must be decoded as a bitfield:
|
Support by emulators
Emulators not listed here do not support the advanced homebrew ROM header format.
Emulator | Savetype | Controllers |
---|---|---|
Ares | Yes | Yes |
cen64 | Yes | No |
Parallel Launcher | Yes | Yes |
mupen64plus (core) | Yes | No |
Rosalie's Mupen GUI | Yes | No |
Support by flashcarts
Support by flashcarts can vary depending on the USB loader being used and/or the flashcart operating system. Notice that flashcarts can emulate a specific savetype but have nothing to do with controllers, so the maximum expected support is related to savetype.
Flashcart | Loader | Current support |
---|---|---|
64drive | 64drive official C tool | None |
64drive menu | None | |
g64drive | Savetype supported | |
UNFLoader | Savetype supported | |
Everdrive 64 | Menu | Savetype supported |
ed64 | None | |
UNFLoader | Savetype supported | |
SummerCart64 | N64FlashcartMenu | Savetype supported |
sc64deployer | Savetype supported | |
UNFLoader | Savetype supported |