mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 15:01:32 -04:00
5dd4310285
* begin anim v and w * structs * bgId * cleanup * space * more cleanup * spacing * Unsigned
15 lines
276 B
C
15 lines
276 B
C
#ifndef PR_OS_INTERNAL_H
|
|
#define PR_OS_INTERNAL_H
|
|
|
|
#include "ultratypes.h"
|
|
#include "os_message.h"
|
|
#include "os_pi.h"
|
|
#include "os_internal_rsp.h"
|
|
|
|
typedef struct __osHwInt {
|
|
/* 0x0 */ s32 (*handler)(void);
|
|
/* 0x4 */ void* stackEnd;
|
|
} __osHwInt; // size = 0x8
|
|
|
|
#endif
|