diff options
author | Made <made111@gmx.de> | 2020-05-18 02:10:36 +0200 |
---|---|---|
committer | Made <made111@gmx.de> | 2020-05-18 02:10:36 +0200 |
commit | 648c9421d8ecbd8642f4ae393ab8add89fb3dc00 (patch) | |
tree | 5e45cd6bc0a5249b2933c43e70ae776a45c7f8e3 /arm9/lib/include/GX_state.h | |
parent | 2e1c3ccd3ff3035acc98b34c2b29ba5c865e6194 (diff) |
Add enums and some other stuff and split header
Diffstat (limited to 'arm9/lib/include/GX_state.h')
-rw-r--r-- | arm9/lib/include/GX_state.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/arm9/lib/include/GX_state.h b/arm9/lib/include/GX_state.h new file mode 100644 index 00000000..c94b6c07 --- /dev/null +++ b/arm9/lib/include/GX_state.h @@ -0,0 +1,24 @@ +#ifndef GUARD_GX_STATE_H +#define GUARD_GX_STATE_H + +struct GX_State +{ + u16 lcdc; + u16 bg; + u16 obj; + u16 arm7; + u16 tex; + u16 texPltt; + u16 clrImg; + u16 bgExtPltt; + u16 objExtPltt; + + u16 sub_bg; + u16 sub_obj; + u16 sub_bgExtPltt; + u16 sub_objExtPltt; +}; + +void GX_InitGXState(); + +#endif //GUARD_GX_STATE_H |