mirror of
https://github.com/ApacheThunder/GBA-Exploader.git
synced 2025-06-18 19:45:39 -04:00

* Fixed remaining save issues for most SuperCards. * Patching system from SCFW implemented for SuperCards. Prepatched roms no longer required for use with GBA-Exploader for SuperCards! * Initial EZ Flash Omega/Omega DE support! Note that there are still save issues right now. DE has partial saves working with just 128KB saves not working. (so Pokemon games do not hold saves currently)
32 lines
736 B
C
32 lines
736 B
C
#ifndef SC_SRAM_H
|
|
#define SC_SRAM_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <nds/ndstypes.h>
|
|
|
|
extern u32 romSize;
|
|
|
|
bool flash_patchV120(const struct save_type* type);
|
|
bool flash_patchV123(const struct save_type* type);
|
|
bool flash_patchV126(const struct save_type* type);
|
|
bool flash_patch512V130(const struct save_type* type);
|
|
bool flash_patch1MV102(const struct save_type* type);
|
|
bool flash_patch1MV103(const struct save_type* type);
|
|
|
|
bool eeprom_patchV111(const struct save_type* type);
|
|
bool eeprom_patchV120(const struct save_type* type);
|
|
bool eeprom_patchV124(const struct save_type* type);
|
|
bool eeprom_patchV126(const struct save_type* type);
|
|
|
|
const struct save_type* save_findTag();
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|
|
|