Rename boot.c to tlb.s and disassemble tlb functions

This commit is contained in:
Ryan Dwyer
2021-10-06 18:30:32 +10:00
parent ee8afafc31
commit f616ee8307
19 changed files with 588 additions and 1270 deletions
-11
View File
@@ -1,11 +0,0 @@
#ifndef _IN_LIB_BOOT_H
#define _IN_LIB_BOOT_H
#include <ultra64.h>
void boot(void);
s32 boot000010a4(void);
s32 boot0000113c(void);
s32 boot00001180(void);
void bootUnmapTLBRange(s32 first, s32 last);
#endif
+1 -1
View File
@@ -7,6 +7,6 @@ void *segGetDatazipRomStart(void);
void *segGetInflateRomStart(void);
void *segGetInflateRomStart2(void);
void *segGetGamezipsRomStart(void);
u32 bootInflate();
u32 segInflate();
#endif
+11
View File
@@ -0,0 +1,11 @@
#ifndef _IN_LIB_BOOT_H
#define _IN_LIB_BOOT_H
#include <ultra64.h>
void tlbInit(void);
s32 tlb000010a4(void);
s32 tlb0000113c(void);
s32 tlbHandleMiss(void);
void tlbUnmapRange(s32 first, s32 last);
#endif