mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-06-02 10:09:46 -04:00
11 lines
202 B
C
11 lines
202 B
C
#ifndef _IN_LIB_BOOT_H
|
|
#define _IN_LIB_BOOT_H
|
|
#include <ultra64.h>
|
|
|
|
void bootPhase1(void);
|
|
s32 bootGetMemSize(void);
|
|
void *bootAllocateStack(s32 threadid, s32 size);
|
|
void bootPhase2(void *arg);
|
|
|
|
#endif
|