From 9fa0a7f1da1b70bee995f53c6c96c43189018772 Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Wed, 1 Feb 2023 18:45:02 -0400 Subject: global: Import Dolphin SDK This version comes from the Metroid Prime decompilation project. https://github.com/PrimeDecomp/prime --- include/dolphin/GBAPriv.h | 62 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 include/dolphin/GBAPriv.h (limited to 'include/dolphin/GBAPriv.h') diff --git a/include/dolphin/GBAPriv.h b/include/dolphin/GBAPriv.h new file mode 100644 index 0000000..43d23e1 --- /dev/null +++ b/include/dolphin/GBAPriv.h @@ -0,0 +1,62 @@ +#ifndef _DOLPHIN_GBAPRIV +#define _DOLPHIN_GBAPRIV + +#include "types.h" + +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + +typedef void (*GBATransferCallback)(s32 chan); + +typedef struct GBASecParams { + u8 data[0x40]; +} GBASecParams; + +typedef struct GBA { + u8 command; + u8 src[4]; + u8 dst[4]; + u8 _09; + s8 _0a; + s8 _0b; + s32 _0c; + s32 _10; + u8* status; + u8* buffer; + GBACallback callback; + s32 result; + OSThreadQueue thread_queue; + OSTime delay; + GBATransferCallback _38; + s32 _3c; + s32 palette_color; + s32 palette_speed; + u8* program; + s32 program_length; + s32 jboot_status; + GBACallback jboot_callback; + char data2[0x74u - 0x58u]; + u8* challenge_cipher; + char data3[0xf8 - 0x78u]; + GBASecParams* param; + char data4[0x100u - 0xfcu]; +} GBA; + +extern GBA __GBA[4]; +extern BOOL __GBAReset; + +void __GBAHandler(s32 chan, u32 sr, OSContext* context); +void __GBASyncCallback(s32 chan, s32 ret); +s32 __GBASync(s32 chan); +OSTime __GBASetDelay(s32 chan, OSTime delay); +s32 __GBATransfer(s32 chan, s32 w1, s32 w2, GBATransferCallback callback); + +#ifdef __cplusplus +} +#endif + +#endif // _DOLPHIN_GBAPRIV -- cgit v1.2.3-13-gbd6f