Decompile func0f000850 and func0f000860
This commit is contained in:
parent
0ca5decc4c
commit
327f556fff
|
|
@ -35,6 +35,7 @@ SECTIONS
|
|||
src/game/game_000090.o (.text);
|
||||
src/game/game_000130.o (.text);
|
||||
src/game/game_000850.o (.text);
|
||||
src/game/game_000860.o (.text);
|
||||
src/game/game_000870.o (.text);
|
||||
src/game/game_0008e0.o (.text);
|
||||
src/game/game_0008f0.o (.text);
|
||||
|
|
@ -117,6 +118,7 @@ SECTIONS
|
|||
src/game/game_000090.o (.rodata);
|
||||
src/game/game_000130.o (.rodata);
|
||||
src/game/game_000850.o (.rodata);
|
||||
src/game/game_000860.o (.rodata);
|
||||
src/game/game_000870.o (.rodata);
|
||||
src/game/game_0008e0.o (.rodata);
|
||||
src/game/game_0008f0.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 func0f000850
|
||||
/* f000850: 03e00008 */ jr $ra
|
||||
/* f000854: 00000000 */ sll $zero,$zero,0x0
|
||||
/* f000858: 00000000 */ sll $zero,$zero,0x0
|
||||
/* f00085c: 00000000 */ sll $zero,$zero,0x0
|
||||
);
|
||||
|
||||
GLOBAL_ASM(
|
||||
glabel func0f000860
|
||||
/* f000860: 03e00008 */ jr $ra
|
||||
/* f000864: 00000000 */ sll $zero,$zero,0x0
|
||||
/* f000868: 00000000 */ sll $zero,$zero,0x0
|
||||
/* f00086c: 00000000 */ sll $zero,$zero,0x0
|
||||
);
|
||||
void func0f000850(void)
|
||||
{
|
||||
// empty
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
#include <ultra64.h>
|
||||
#include "constants.h"
|
||||
#include "gvars/gvars.h"
|
||||
#include "types.h"
|
||||
|
||||
void func0f000860(void)
|
||||
{
|
||||
// empty
|
||||
}
|
||||
|
|
@ -4,6 +4,5 @@
|
|||
#include "types.h"
|
||||
|
||||
u32 func0f000850(void);
|
||||
u32 func0f000860(void);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
#ifndef IN_GAME_GAME_000860_H
|
||||
#define IN_GAME_GAME_000860_H
|
||||
#include <ultra64.h>
|
||||
#include "types.h"
|
||||
|
||||
u32 func0f000860(void);
|
||||
|
||||
#endif
|
||||
Loading…
Reference in New Issue