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)
22 lines
527 B
C
22 lines
527 B
C
#ifndef FIND_H
|
|
#define FIND_H
|
|
|
|
#include <nds.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// COMMON
|
|
//u8* memsearch(const u8* start, u32 dataSize, const u8* find, u32 findSize);
|
|
extern u32* memsearch32(const u32* start, u32 dataSize, const u32* find, u32 findSize, bool forward);
|
|
extern u16* memsearch16(const u16* start, u32 dataSize, const u16* find, u32 findSize, bool forward);
|
|
extern u8* memsearch8(const u8* start, u32 dataSize, const u8* find, u32 findSize, bool forward);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // FIND_H
|
|
|