Link m_debug_hayakawa.c

This commit is contained in:
Cuyler36
2023-04-22 00:55:05 -04:00
parent 5d7bc898e8
commit efb1169e4f
25 changed files with 837 additions and 88 deletions
+5 -4
View File
@@ -8,11 +8,12 @@
extern "C" {
#endif
/* sizeof(pad_t) == 0x18 */
typedef struct {
OSContPad now;
OSContPad last;
OSContPad on;
OSContPad off;
/* 0x00 */ OSContPad now;
/* 0x06 */ OSContPad last;
/* 0x0C */ OSContPad on;
/* 0x12 */ OSContPad off;
} pad_t;
#ifdef __cplusplus
+8
View File
@@ -3,6 +3,10 @@
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
u32 r:8;
u32 g:8;
@@ -15,4 +19,8 @@ typedef union {
rgba8888_t c;
} rgba8888;
#ifdef __cplusplus
}
#endif
#endif