diff options
author | Cleverking2003 <30466983+Cleverking2003@users.noreply.github.com> | 2020-09-23 18:59:36 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-23 18:59:36 +0300 |
commit | 311f383ea4ef3d7f3d0682b5d889b62cd0fe2f77 (patch) | |
tree | 487523748fcae6999cebe81f2fab14be48506caf /arm7/lib/include/OS_context.h | |
parent | f8bd464bad0f8eb0c15077da4e0be1ba0dbd9976 (diff) | |
parent | 7f41d4a021c2653b6c7681b12ecde6885c7d0290 (diff) |
Merge pull request #287 from red031000/master
some itemtool images, arm7 OS_context, arm9 PXI_init
Diffstat (limited to 'arm7/lib/include/OS_context.h')
-rw-r--r-- | arm7/lib/include/OS_context.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arm7/lib/include/OS_context.h b/arm7/lib/include/OS_context.h index b01ccb8b..6b18ebd5 100644 --- a/arm7/lib/include/OS_context.h +++ b/arm7/lib/include/OS_context.h @@ -13,8 +13,8 @@ typedef struct OSContext u32 sp_svc; } OSContext; -extern u32 OS_SaveContext(OSContext *context); -extern void OS_LoadContext(OSContext *context); -extern void OS_InitContext(OSContext *context, u32 func, u32 stack); +void OS_InitContext(register OSContext *context, register u32 newpc, register u32 newsp); +BOOL OS_SaveContext(register OSContext *context); +void OS_LoadContext(register OSContext *context); #endif //POKEDIAMOND_ARM7_OS_CONTEXT_H |