Decompile func0f000850 and func0f000860

This commit is contained in:
Ryan Dwyer 2019-11-16 11:15:59 +10:00
parent 0ca5decc4c
commit 327f556fff
5 changed files with 23 additions and 19 deletions

View File

@ -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);

View File

@ -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
}

9
src/game/game_000860.c Normal file
View File

@ -0,0 +1,9 @@
#include <ultra64.h>
#include "constants.h"
#include "gvars/gvars.h"
#include "types.h"
void func0f000860(void)
{
// empty
}

View File

@ -4,6 +4,5 @@
#include "types.h"
u32 func0f000850(void);
u32 func0f000860(void);
#endif

View File

@ -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