Decompile func0f015400 and func0f015410
This commit is contained in:
parent
e4aa36ba2d
commit
b356545489
|
|
@ -58,6 +58,7 @@ SECTIONS
|
|||
src/game/game_015260.o (.text);
|
||||
src/game/game_015280.o (.text);
|
||||
src/game/game_015400.o (.text);
|
||||
src/game/game_015410.o (.text);
|
||||
src/game/game_015420.o (.text);
|
||||
src/game/game_015470.o (.text);
|
||||
src/game/game_01d860.o (.text);
|
||||
|
|
@ -138,6 +139,7 @@ SECTIONS
|
|||
src/game/game_015260.o (.rodata);
|
||||
src/game/game_015280.o (.rodata);
|
||||
src/game/game_015400.o (.rodata);
|
||||
src/game/game_015410.o (.rodata);
|
||||
src/game/game_015420.o (.rodata);
|
||||
src/game/game_015470.o (.rodata);
|
||||
src/game/game_01d860.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 func0f015400
|
||||
/* f015400: 03e00008 */ jr $ra
|
||||
/* f015404: 00000000 */ sll $zero,$zero,0x0
|
||||
/* f015408: 00000000 */ sll $zero,$zero,0x0
|
||||
/* f01540c: 00000000 */ sll $zero,$zero,0x0
|
||||
);
|
||||
|
||||
GLOBAL_ASM(
|
||||
glabel func0f015410
|
||||
/* f015410: 03e00008 */ jr $ra
|
||||
/* f015414: 00000000 */ sll $zero,$zero,0x0
|
||||
/* f015418: 00000000 */ sll $zero,$zero,0x0
|
||||
/* f01541c: 00000000 */ sll $zero,$zero,0x0
|
||||
);
|
||||
void func0f015400(void)
|
||||
{
|
||||
// empty
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
#include <ultra64.h>
|
||||
#include "constants.h"
|
||||
#include "gvars/gvars.h"
|
||||
#include "types.h"
|
||||
|
||||
void func0f015410(void)
|
||||
{
|
||||
// empty
|
||||
}
|
||||
|
|
@ -3,7 +3,6 @@
|
|||
#include <ultra64.h>
|
||||
#include "types.h"
|
||||
|
||||
u32 func0f015400(void);
|
||||
u32 func0f015410(void);
|
||||
void func0f015400(void);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
#ifndef IN_GAME_GAME_015410_H
|
||||
#define IN_GAME_GAME_015410_H
|
||||
#include <ultra64.h>
|
||||
#include "types.h"
|
||||
|
||||
void func0f015410(void);
|
||||
|
||||
#endif
|
||||
Loading…
Reference in New Issue