mirror of
https://github.com/zeldaret/st
synced 2026-05-25 15:25:15 -04:00
c98c03de39
* match wstring.c * match math_api.c, mbstring.c, mem.c and mem_funcs.c * more progress * build issues * fix non-matching issues * reorganise files * match fdlibm (+ libc progress) * fix jp build * solved some non-matchings and progress * removed types.h usage in libc * match data and add missing delinks for jp
16 lines
328 B
C
16 lines
328 B
C
#ifndef NITROSDK_OS_CONTEXT_H
|
|
#define NITROSDK_OS_CONTEXT_H
|
|
|
|
#include <types.h>
|
|
|
|
typedef struct OSContext {
|
|
/* 0x00 */ u32 cpsr;
|
|
/* 0x04 */ u32 r[13];
|
|
/* 0x38 */ u32 sp;
|
|
/* 0x3C */ u32 lr;
|
|
/* 0x40 */ u32 pc;
|
|
/* 0x44 */ char unk_40[0x20];
|
|
} OSContext; // Size: 0x64
|
|
|
|
#endif // NITROSDK_OS_CONTEXT_H
|