mirror of
https://github.com/pret/pokeruby.git
synced 2026-08-08 02:24:08 -05:00
* Extract other external function declarations * Fix GBA compilation * Revert `sub_803C434` to asm
37 lines
454 B
C
37 lines
454 B
C
#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
|