Decompile func0f0008e0 and func0f0008f0
This commit is contained in:
parent
6f9892c1d6
commit
5e86c8468c
|
|
@ -37,6 +37,7 @@ SECTIONS
|
|||
src/game/game_000850.o (.text);
|
||||
src/game/game_000870.o (.text);
|
||||
src/game/game_0008e0.o (.text);
|
||||
src/game/game_0008f0.o (.text);
|
||||
src/game/game_000900.o (.text);
|
||||
src/game/game_000910.o (.text);
|
||||
src/game/game_000920.o (.text);
|
||||
|
|
@ -116,6 +117,7 @@ SECTIONS
|
|||
src/game/game_000850.o (.rodata);
|
||||
src/game/game_000870.o (.rodata);
|
||||
src/game/game_0008e0.o (.rodata);
|
||||
src/game/game_0008f0.o (.rodata);
|
||||
src/game/game_000900.o (.rodata);
|
||||
src/game/game_000910.o (.rodata);
|
||||
src/game/game_000920.o (.rodata);
|
||||
|
|
|
|||
|
|
@ -1,23 +1,9 @@
|
|||
#include <ultra64.h>
|
||||
#include "constants.h"
|
||||
#include "gvars/gvars.h"
|
||||
#include "setup/setup_000000.h"
|
||||
#include "setup/setup_0160b0.h"
|
||||
#include "setup/setup_020df0.h"
|
||||
#include "types.h"
|
||||
|
||||
GLOBAL_ASM(
|
||||
glabel func0f0008e0
|
||||
/* f0008e0: 03e00008 */ jr $ra
|
||||
/* f0008e4: 00000000 */ sll $zero,$zero,0x0
|
||||
/* f0008e8: 00000000 */ sll $zero,$zero,0x0
|
||||
/* f0008ec: 00000000 */ sll $zero,$zero,0x0
|
||||
);
|
||||
|
||||
GLOBAL_ASM(
|
||||
glabel func0f0008f0
|
||||
/* f0008f0: 03e00008 */ jr $ra
|
||||
/* f0008f4: 00000000 */ sll $zero,$zero,0x0
|
||||
/* f0008f8: 00000000 */ sll $zero,$zero,0x0
|
||||
/* f0008fc: 00000000 */ sll $zero,$zero,0x0
|
||||
);
|
||||
void func0f0008e0(void)
|
||||
{
|
||||
// empty
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
#include <ultra64.h>
|
||||
#include "constants.h"
|
||||
#include "gvars/gvars.h"
|
||||
#include "types.h"
|
||||
|
||||
void func0f0008f0(void)
|
||||
{
|
||||
// empty
|
||||
}
|
||||
|
|
@ -3,7 +3,6 @@
|
|||
#include <ultra64.h>
|
||||
#include "types.h"
|
||||
|
||||
u32 func0f0008e0(void);
|
||||
u32 func0f0008f0(void);
|
||||
void func0f0008e0(void);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
#ifndef IN_GAME_GAME_0008F0_H
|
||||
#define IN_GAME_GAME_0008F0_H
|
||||
#include <ultra64.h>
|
||||
#include "types.h"
|
||||
|
||||
void func0f0008f0(void);
|
||||
|
||||
#endif
|
||||
Loading…
Reference in New Issue