diff options
Diffstat (limited to 'include/agb_sram.h')
-rw-r--r-- | include/agb_sram.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/agb_sram.h b/include/agb_sram.h new file mode 100644 index 0000000..c609417 --- /dev/null +++ b/include/agb_sram.h @@ -0,0 +1,10 @@ +#ifndef GUARD_AGB_SRAM_H +#define GUARD_AGB_SRAM_H + +void SetSramFastFunc(void); +void WriteSramFast(const u8 *src, u8 *dest, u32 size); +extern void (*ReadSramFast)(const u8 *src, u8 *dest, u32 size); +extern u32 (*VerifySramFast)(const u8 *src, u8 *dest, u32 size); +u32 WriteAndVerifySramFast(const u8 *src, u8 *dest, u32 size); + +#endif // GUARD_AGB_SRAM_H
\ No newline at end of file |