From ae6d7f251ec0c6757fa3b41d50f6a58f8f2dd48c Mon Sep 17 00:00:00 2001 From: sceptillion <33798691+sceptillion@users.noreply.github.com> Date: Mon, 11 Dec 2017 19:05:47 -0800 Subject: decompile flash --- include/flash.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 include/flash.h (limited to 'include/flash.h') diff --git a/include/flash.h b/include/flash.h new file mode 100644 index 0000000..586cde7 --- /dev/null +++ b/include/flash.h @@ -0,0 +1,9 @@ +#ifndef GUARD_FLASH_H +#define GUARD_FLASH_H + +void InitFlash(void); +void ClearFlashData(void); +s32 ReadFlashData(s32 sector, u8 *dest, s32 size); +s32 WriteFlashData(s32 sector, u8 *src, s32 size); + +#endif // GUARD_FLASH_H -- cgit v1.2.3