Rename init.c to boot.c

This commit is contained in:
Ryan Dwyer
2021-10-06 18:46:28 +10:00
parent f616ee8307
commit c5d2900c56
16 changed files with 59 additions and 59 deletions
+10
View File
@@ -0,0 +1,10 @@
#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
-10
View File
@@ -1,10 +0,0 @@
#ifndef _IN_BOOT_INIT_H
#define _IN_BOOT_INIT_H
#include <ultra64.h>
void init(void);
s32 initGetMemSize(void);
void *allocateStack(s32 threadid, s32 size);
void mainproc(void *arg);
#endif
+1 -1
View File
@@ -7,7 +7,7 @@
extern s32 var8005dd18;
void mainInit(void);
void mainEntry(void);
void mainProc(void);
void func0000db30(char *string, void *ptr);
void mainLoop(void);
void mainTick(void);
+2 -2
View File
@@ -1,5 +1,5 @@
#ifndef _IN_LIB_BOOT_H
#define _IN_LIB_BOOT_H
#ifndef _IN_LIB_TLB_H
#define _IN_LIB_TLB_H
#include <ultra64.h>
void tlbInit(void);