mirror of
https://github.com/sm64pc/sm64pc.git
synced 2025-04-12 00:05:59 +02:00
12 lines
212 B
C
12 lines
212 B
C
#ifndef _ULTRA64_OS_MISC_H_
|
|
#define _ULTRA64_OS_MISC_H_
|
|
#include <PR/ultratypes.h>
|
|
/* Miscellaneous OS functions */
|
|
|
|
void osInitialize(void);
|
|
u32 osGetCount(void);
|
|
|
|
uintptr_t osVirtualToPhysical(void *);
|
|
|
|
#endif
|