diff options
author | Revo <projectrevotpp@hotmail.com> | 2020-05-10 20:02:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-10 20:02:11 -0400 |
commit | 49e14283e13c146018f2a2785dfc77e0e1ff5368 (patch) | |
tree | 49e05a9eadfcc449943eabdbf2ddf85edb15c09a /include/main.h | |
parent | 584e6caadd3332e555a40979d98a8fd871d36a23 (diff) | |
parent | 28370e78b2357915fa0bd0c299fa1fbbd91da0b3 (diff) |
Merge pull request #72 from PikalaxALT/pikalax_work
More module disassembly; main.c
Diffstat (limited to 'include/main.h')
-rw-r--r-- | include/main.h | 34 |
1 files changed, 30 insertions, 4 deletions
diff --git a/include/main.h b/include/main.h index 0df94795..23059702 100644 --- a/include/main.h +++ b/include/main.h @@ -1,19 +1,42 @@ #ifndef GUARD_MAIN_H #define GUARD_MAIN_H +#include "FS_overlay.h" +#include "SPI_pm.h" + +struct Unk21DBE18 +{ + u8 filler_00[16]; +}; + struct Unk2106FA0 { - s32 unk0; + PMBackLightSwitch unk0; s32 unk4; - s32 unk8; + FSOverlayID unk8; s32 unkC; - s32 unk10; - s32 unk14; + FSOverlayID unk10; + struct Unk21DBE18 * unk14; s32 unk18; s32 unk1C; s32 unk20; }; +struct Unk21C4818 +{ + u32 unk0; + u32 unk4; + u32 unk8; + u32 unkC; +}; + +struct Unk21C4828 +{ + u32 unk0; + u32 unk4; + u32 unk8; +}; + struct Unk21C48B8 { void (*unk0)(s32); @@ -37,4 +60,7 @@ struct Unk21C48B8 s32 unk6C; }; +extern struct Unk2106FA0 gBacklightTop; +extern struct Unk2106FA0 gBacklightTop_2; // same as the first one, it's referenced twice in the constant pool... + #endif //GUARD_MAIN_H |