diff options
author | Max <mparisi@stevens.edu> | 2020-10-31 18:08:27 -0400 |
---|---|---|
committer | Max <mparisi@stevens.edu> | 2020-10-31 18:08:27 -0400 |
commit | e5e4451cfcf8b03153fd11a620460f66b4840ba6 (patch) | |
tree | 2d012cafca70bd31b278eb095a41d7432592cdc3 /include/SDK/NAND/nand.h | |
parent | 4ff4ced455e64e40df59298370b32f7e8edb5bdc (diff) |
refactor as code_801DCE6C to C++
Diffstat (limited to 'include/SDK/NAND/nand.h')
-rw-r--r-- | include/SDK/NAND/nand.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/SDK/NAND/nand.h b/include/SDK/NAND/nand.h index bc22279..ac2f655 100644 --- a/include/SDK/NAND/nand.h +++ b/include/SDK/NAND/nand.h @@ -5,13 +5,13 @@ extern "C" {
#endif
-// TODO: size >= 0x8B
+// NOTE: size >= 0x8B, putting 0x8C for now
typedef struct NANDFileInfo
{
u8 unk0[0x8C];
} NANDFileInfo;
-// TODO: no idea of size yet
+// TODO: placeholder size
typedef struct NANDCommandBlock
{
u8 unk0[0x4];
|