mirror of
https://github.com/n64decomp/sm64.git
synced 2024-11-12 04:15:02 -05:00
12 lines
180 B
C
12 lines
180 B
C
|
#ifndef _ULTRA64_OS_MISC_H_
|
||
|
#define _ULTRA64_OS_MISC_H_
|
||
|
|
||
|
/* Miscellaneous OS functions */
|
||
|
|
||
|
void osInitialize(void);
|
||
|
u32 osGetCount(void);
|
||
|
|
||
|
u32 osVirtualToPhysical(void *);
|
||
|
|
||
|
#endif
|