Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MorsGames
GitHub Repository: MorsGames/sm64plus
Path: blob/master/include/PR/os_internal.h
7858 views
1
#ifndef _ULTRA64_OS_INTERNAL_H_
2
#define _ULTRA64_OS_INTERNAL_H_
3
#include "PR/os_message.h"
4
5
/* Internal functions used by the operating system */
6
/* Do not include this header in application code */
7
8
/* Variables */
9
10
//extern u64 osClockRate;
11
12
/* Functions */
13
14
/*u32 __osProbeTLB(void *);
15
u32 __osDisableInt(void);
16
void __osRestoreInt(u32);*/
17
OSThread *__osGetCurrFaultedThread(void);
18
19
#endif
20
21