mirror of https://github.com/zeldaret/mm.git
func_80183070 to Sys_Freeze (#1686)
This commit is contained in:
parent
16fbbef6f5
commit
9213dc7a5e
|
|
@ -25,8 +25,6 @@ void Room_Draw(PlayState* play, Room* room, u32 flags);
|
|||
|
||||
void Room_FinishRoomChange(PlayState* play, RoomContext* roomCtx);
|
||||
|
||||
NORETURN void func_80183070(void);
|
||||
|
||||
AudioTask* AudioThread_Update(void);
|
||||
void AudioThread_QueueCmdF32(u32 opArgs, f32 data);
|
||||
void AudioThread_QueueCmdS32(u32 opArgs, s32 data);
|
||||
|
|
|
|||
|
|
@ -740,7 +740,7 @@ beginseg
|
|||
include "$(BUILD_DIR)/src/code/sys_matrix.o"
|
||||
include "$(BUILD_DIR)/src/code/sys_ucode.o"
|
||||
include "$(BUILD_DIR)/src/code/sys_rumble.o"
|
||||
include "$(BUILD_DIR)/src/code/code_80183070.o"
|
||||
include "$(BUILD_DIR)/src/code/sys_freeze.o"
|
||||
include "$(BUILD_DIR)/src/code/c_keyframe.o"
|
||||
include "$(BUILD_DIR)/src/code/sys_slowly.o"
|
||||
include "$(BUILD_DIR)/src/code/sys_flashrom.o"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#include "libc64/sleep.h"
|
||||
#include "attributes.h"
|
||||
|
||||
NORETURN void func_80183070(void) {
|
||||
NORETURN void Sys_Freeze(void) {
|
||||
for (;;) {
|
||||
msleep(1000);
|
||||
}
|
||||
|
|
@ -477,7 +477,7 @@
|
|||
0x80180160 : "sys_matrix",
|
||||
0x80182C90 : "sys_ucode",
|
||||
0x80182CE0 : "sys_rumble",
|
||||
0x80183070 : "code_80183070",
|
||||
0x80183070 : "sys_freeze",
|
||||
0x801830A0 : "c_keyframe",
|
||||
0x80185660 : "sys_slowly",
|
||||
0x801857C0 : "sys_flashrom",
|
||||
|
|
|
|||
|
|
@ -2914,7 +2914,7 @@ asm/non_matchings/code/sys_ucode/SysUcode_GetUCodeData.s,SysUcode_GetUCodeData,0
|
|||
asm/non_matchings/code/sys_ucode/RumbleManager_Update.s,RumbleManager_Update,0x80182CE0,0xD0
|
||||
asm/non_matchings/code/sys_ucode/RumbleManager_Init.s,RumbleManager_Init,0x80183020,0xE
|
||||
asm/non_matchings/code/sys_ucode/RumbleManager_Destroy.s,RumbleManager_Destroy,0x80183058,0x6
|
||||
asm/non_matchings/code/code_80183070/func_80183070.s,func_80183070,0x80183070,0xC
|
||||
asm/non_matchings/code/sys_freeze/Sys_Freeze.s,Sys_Freeze,0x80183070,0xC
|
||||
asm/non_matchings/code/c_keyframe/FrameCtrl_Reset.s,FrameCtrl_Reset,0x801830A0,0xA
|
||||
asm/non_matchings/code/c_keyframe/FrameCtrl_Init.s,FrameCtrl_Init,0x801830C8,0x8
|
||||
asm/non_matchings/code/c_keyframe/FrameCtrl_SetProperties.s,FrameCtrl_SetProperties,0x801830E8,0x18
|
||||
|
|
|
|||
|
Loading…
Reference in New Issue