diff options
author | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2016-12-02 19:06:22 +0100 |
---|---|---|
committer | YamaArashi <YamaArashi@users.noreply.github.com> | 2016-12-02 10:06:22 -0800 |
commit | 1f222c04ef1d10ff5a5c6bb98cd4380ecf2bba86 (patch) | |
tree | 573d6368233110b17292e498f49532c1c9244404 /include/asm.h | |
parent | 4258e60771aa9fdabd678930eca534423bd371b8 (diff) |
[WIP] Extract all external function declarations to headers (#114)
* Extract other external function declarations
* Fix GBA compilation
* Revert `sub_803C434` to asm
Diffstat (limited to 'include/asm.h')
-rw-r--r-- | include/asm.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/include/asm.h b/include/asm.h new file mode 100644 index 000000000..ec0516497 --- /dev/null +++ b/include/asm.h @@ -0,0 +1,36 @@ +#ifndef PROJECT_ASM_H +#define PROJECT_ASM_H + +#include "task.h" +#include "main.h" +#include "sprite.h" +#include "asm_fieldmap.h" + +struct UnkInputStruct +{ + u8 input_field_0; + u8 input_field_1; + u8 input_field_2; + u8 input_field_3; +}; + +struct UnknownStruct_FPA +{ + u8 unk0; + u8 unk1; + u8 unk2; + s16 unk4; + s16 unk6; + u8 unk8; + u8 unk9; + u8 unkA_0:4; + u8 unkA_4:4; + u16 unkC; + u16 unkE; + u32 unk10; + u16 unk14; +}; + +#include "asm.inc.h" + +#endif //PROJECT_ASM_H |