2019-08-25 04:46:40 +00:00
|
|
|
#ifndef _ULTRA64_OS_MISC_H_
|
|
|
|
#define _ULTRA64_OS_MISC_H_
|
2020-02-03 05:51:26 +00:00
|
|
|
#include <PR/ultratypes.h>
|
2019-08-25 04:46:40 +00:00
|
|
|
/* Miscellaneous OS functions */
|
|
|
|
|
|
|
|
void osInitialize(void);
|
|
|
|
u32 osGetCount(void);
|
|
|
|
|
2019-10-05 19:08:05 +00:00
|
|
|
uintptr_t osVirtualToPhysical(void *);
|
2019-08-25 04:46:40 +00:00
|
|
|
|
|
|
|
#endif
|