N64FlashcartMenu
|
N64 ROM Database. More...
Go to the source code of this file.
Data Structures | |
struct | rom_info_t |
ROM Information Structure. More... | |
struct | rom_info_t.libultra |
union | rom_info_t.__unnamed22__ |
struct | rom_info_t.__unnamed22__.__unnamed28__ |
struct | rom_info_t.boot_override |
struct | rom_info_t.features |
struct | rom_info_t.settings |
struct | rom_info_t.metadata |
Functions | |
bool | rom_info_get_cic_seed (rom_info_t *rom_info, uint8_t *seed) |
Get the CIC seed for the ROM. | |
rom_err_t | rom_info_load (path_t *path, rom_info_t *rom_info) |
Load ROM information from a file. | |
rom_cic_type_t | rom_info_get_cic_type (rom_info_t *rom_info) |
Get the CIC type for the ROM. | |
rom_err_t | rom_info_override_cic_type (path_t *path, rom_info_t *rom_info, rom_cic_type_t cic_type) |
Override the CIC type for the ROM. | |
rom_save_type_t | rom_info_get_save_type (rom_info_t *rom_info) |
Get the save type for the ROM. | |
rom_err_t | rom_info_override_save_type (path_t *path, rom_info_t *rom_info, rom_save_type_t save_type) |
Override the save type for the ROM. | |
rom_tv_type_t | rom_info_get_tv_type (rom_info_t *rom_info) |
Get the TV type for the ROM. | |
rom_err_t | rom_info_override_tv_type (path_t *path, rom_info_t *rom_info, rom_tv_type_t tv_type) |
Override the TV type for the ROM. | |
N64 ROM Database.
struct rom_info_t |
ROM Information Structure.
Data Fields | ||
---|---|---|
rom_endianness_t | endianness |
The file endian |
float | clock_rate |
The clock rate defined in the ROM's header |
uint32_t | boot_address |
The boot address defined in the ROM's header |
struct rom_info_t.libultra | libultra | |
uint64_t | check_code |
The check code defined in the ROM's header |
char | title[20] |
The title defined in the ROM's header |
union rom_info_t.__unnamed22__ | __unnamed__ | |
uint8_t | version |
The ROM version defined in the ROM's header |
rom_cic_type_t | cic_type |
The CIC type required by the ROM |
rom_save_type_t | save_type |
The save type required by the ROM |
rom_tv_type_t | tv_type |
The TV type required by the ROM |
struct rom_info_t.boot_override | boot_override |
Overrides the auto-detected CIC/save/TV types during ROM boot |
struct rom_info_t.features | features |
The supported ROM accessories |
struct rom_info_t.settings | settings |
The ROM settings |
struct rom_info_t.metadata | metadata |
The ROM metadata |
struct rom_info_t.libultra |
union rom_info_t.__unnamed22__ |
Data Fields | ||
---|---|---|
char | game_code[4] |
The game code defined in the ROM's header |
struct rom_info_t.__unnamed22__.__unnamed28__ | __unnamed__ |
struct rom_info_t.__unnamed22__.__unnamed28__ |
Data Fields | ||
---|---|---|
rom_category_type_t | category_code: 8 |
The game media type |
char | unique_code[2] |
The game unique identifier |
rom_destination_type_t | destination_code: 8 |
The game region and or market |
struct rom_info_t.boot_override |
Data Fields | ||
---|---|---|
bool | cic |
Override CIC type |
rom_cic_type_t | cic_type |
CIC type |
bool | save |
Override save type |
rom_save_type_t | save_type |
Save type |
bool | tv |
Override TV type |
rom_tv_type_t | tv_type |
TV type |
struct rom_info_t.features |
Data Fields | ||
---|---|---|
bool | controller_pak |
Supports Controller Pak |
bool | rumble_pak |
Supports Rumble Pak |
bool | transfer_pak |
Supports Transfer Pak |
bool | voice_recognition_unit |
Supports Voice Recognition Unit |
bool | real_time_clock |
Supports Real Time Clock |
bool | disk_conversion |
Supports Disk Conversion |
bool | combo_rom_disk_game |
Supports Combo ROM/Disk Game |
rom_expansion_pak_t | expansion_pak |
Expansion Pak requirements |
struct rom_info_t.settings |
enum rom_err_t |
enum rom_endianness_t |
enum rom_category_type_t |
ROM media type enumeration.
ROM market region & language type enumeration.
enum rom_cic_type_t |
ROM CIC type enumeration.
enum rom_save_type_t |
ROM save type enumeration.
enum rom_tv_type_t |
enum rom_expansion_pak_t |
bool rom_info_get_cic_seed | ( | rom_info_t * | rom_info, |
uint8_t * | seed ) |
Get the CIC seed for the ROM.
rom_info | Pointer to the ROM information structure |
seed | Pointer to the seed value |
rom_err_t rom_info_load | ( | path_t * | path, |
rom_info_t * | rom_info ) |
Load ROM information from a file.
path | Pointer to the path structure |
rom_info | Pointer to the ROM information structure |
rom_cic_type_t rom_info_get_cic_type | ( | rom_info_t * | rom_info | ) |
Get the CIC type for the ROM.
rom_info | Pointer to the ROM information structure |
rom_err_t rom_info_override_cic_type | ( | path_t * | path, |
rom_info_t * | rom_info, | ||
rom_cic_type_t | cic_type ) |
Override the CIC type for the ROM.
path | Pointer to the path structure |
rom_info | Pointer to the ROM information structure |
cic_type | CIC type to override |
rom_save_type_t rom_info_get_save_type | ( | rom_info_t * | rom_info | ) |
Get the save type for the ROM.
rom_info | Pointer to the ROM information structure |
rom_err_t rom_info_override_save_type | ( | path_t * | path, |
rom_info_t * | rom_info, | ||
rom_save_type_t | save_type ) |
Override the save type for the ROM.
path | Pointer to the path structure |
rom_info | Pointer to the ROM information structure |
save_type | Save type to override |
rom_tv_type_t rom_info_get_tv_type | ( | rom_info_t * | rom_info | ) |
Get the TV type for the ROM.
rom_info | Pointer to the ROM information structure |
rom_err_t rom_info_override_tv_type | ( | path_t * | path, |
rom_info_t * | rom_info, | ||
rom_tv_type_t | tv_type ) |
Override the TV type for the ROM.
path | Pointer to the path structure |
rom_info | Pointer to the ROM information structure |
tv_type | TV type to override |