MCPcopy Create free account
hub / github.com/bfbbdecomp/bfbb / __OSCallResetFunctions

Function __OSCallResetFunctions

src/dolphin/src/os/OSReset.c:69–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67}
68
69inline BOOL __OSCallResetFunctions(u32 arg0)
70{
71 OSResetFunctionInfo* info;
72 s32 err = 0;
73
74 for (info = ResetFunctionQueue.first; info != NULL && err == 0; info = info->next)
75 {
76 err |= !info->func(arg0);
77 }
78 err |= !__OSSyncSram();
79 if (err)
80 {
81 return 0;
82 }
83 return 1;
84}
85
86asm void Reset(register s32 resetCode)
87{

Callers 1

OSResetSystemFunction · 0.85

Calls 1

__OSSyncSramFunction · 0.85

Tested by

no test coverage detected