mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-22 12:05:11 +00:00
11 lines
212 B
C
11 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
|