63 bool bad_system_area_lbas[24];
64 uint8_t defect_tracks[16][12];
90 flashcart_err_t (*load_file) (
char *file_path, uint32_t rom_offset, uint32_t file_offset);
bool flashcart_has_feature(flashcart_features_t feature)
Check if the flashcart has a specific feature.
Definition flashcart.c:219
flashcart_reboot_mode_t
Flashcart save type enumeration.
Definition flashcart.h:52
@ FLASHCART_REBOOT_MODE_MENU
The flashcart will reboot into the menu on soft reboot (using the RESET button)
Definition flashcart.h:54
@ FLASHCART_REBOOT_MODE_ROM
The flashcart will reboot into the previous ROM on soft reboot (using the RESET button)
Definition flashcart.h:56
flashcart_err_t
Flashcart error enumeration.
Definition flashcart.h:14
@ FLASHCART_ERR_BBFS
Definition flashcart.h:18
@ FLASHCART_ERR_SD_CARD
Definition flashcart.h:17
@ FLASHCART_ERR_LOAD
Definition flashcart.h:20
@ FLASHCART_ERR_ARGS
Definition flashcart.h:19
@ FLASHCART_OK
Definition flashcart.h:15
@ FLASHCART_ERR_OUTDATED
Definition flashcart.h:16
@ FLASHCART_ERR_INT
Definition flashcart.h:21
@ FLASHCART_ERR_FUNCTION_NOT_SUPPORTED
Definition flashcart.h:22
flashcart_save_type_t
Flashcart save type enumeration.
Definition flashcart.h:39
@ FLASHCART_SAVE_TYPE_EEPROM_16KBIT
Definition flashcart.h:42
@ FLASHCART_SAVE_TYPE_FLASHRAM_PKST2
Definition flashcart.h:47
@ FLASHCART_SAVE_TYPE_SRAM_1MBIT
Definition flashcart.h:45
@ FLASHCART_SAVE_TYPE_FLASHRAM_1MBIT
Definition flashcart.h:46
@ FLASHCART_SAVE_TYPE_SRAM_BANKED
Definition flashcart.h:44
@ FLASHCART_SAVE_TYPE_EEPROM_4KBIT
Definition flashcart.h:41
@ __FLASHCART_SAVE_TYPE_END
Definition flashcart.h:48
@ FLASHCART_SAVE_TYPE_SRAM_256KBIT
Definition flashcart.h:43
@ FLASHCART_SAVE_TYPE_NONE
Definition flashcart.h:40
flashcart_err_t flashcart_load_save(char *save_path, flashcart_save_type_t save_type)
Load a save file onto the flashcart.
Definition flashcart.c:277
uint16_t minor
Definition flashcart.h:70
flashcart_err_t flashcart_load_64dd_ipl(char *ipl_path, flashcart_progress_callback_t *progress)
Load the 64DD IPL (BIOS) onto the flashcart.
Definition flashcart.c:323
flashcart_err_t flashcart_load_file(char *file_path, uint32_t rom_offset, uint32_t file_offset)
Load a file onto the flashcart.
Definition flashcart.c:262
flashcart_firmware_version_t flashcart_get_firmware_version(void)
Get the flashcart firmware version.
Definition flashcart.c:228
uint16_t major
Definition flashcart.h:69
flashcart_err_t flashcart_init(const char **storage_prefix)
Initialize the flashcart.
Definition flashcart.c:146
flashcart_features_t
List of optional supported flashcart features.
Definition flashcart.h:26
@ FLASHCART_FEATURE_DIAGNOSTIC_DATA
Definition flashcart.h:32
@ FLASHCART_FEATURE_64DD
Definition flashcart.h:27
@ FLASHCART_FEATURE_AUTO_REGION
Definition flashcart.h:31
@ FLASHCART_FEATURE_SAVE_WRITEBACK
Definition flashcart.h:34
@ FLASHCART_FEATURE_AUTO_CIC
Definition flashcart.h:30
@ FLASHCART_FEATURE_BIOS_UPDATE_FROM_MENU
Definition flashcart.h:33
@ FLASHCART_FEATURE_RTC
Definition flashcart.h:28
@ FLASHCART_FEATURE_ROM_REBOOT_FAST
Definition flashcart.h:35
@ FLASHCART_FEATURE_USB
Definition flashcart.h:29
uint32_t revision
Definition flashcart.h:71
flashcart_err_t flashcart_load_64dd_disk(char *disk_path, flashcart_disk_parameters_t *disk_parameters)
Load a 64DD disk onto the flashcart.
Definition flashcart.c:342
void flashcart_progress_callback_t(float progress)
Flashcart progress callback type.
Definition flashcart.h:75
flashcart_err_t flashcart_deinit(void)
Deinitialize the flashcart.
Definition flashcart.c:205
bool development_drive
Definition flashcart.h:61
uint8_t disk_type
Definition flashcart.h:62
flashcart_err_t flashcart_load_rom(char *rom_path, bool byte_swap, flashcart_progress_callback_t *progress)
Load a ROM onto the flashcart.
Definition flashcart.c:240
char * flashcart_convert_error_message(flashcart_err_t err)
Convert a flashcart error code to a human-readable error message.
Definition flashcart.c:126
Flashcart Disk Parameter Structure.
Definition flashcart.h:60
Flashcart Firmware version Structure.
Definition flashcart.h:68
Flashcart Structure.
Definition flashcart.h:78