20 lines
387 B
C
20 lines
387 B
C
#include "common.h"
|
|
|
|
#include <PR/os_internal.h>
|
|
|
|
/* 1C0E0 8008BCE0 */
|
|
s32 func_8008BCE0(void** arg0) {
|
|
// Use of `__osDisableInt()` and `__osRestoreInt()`
|
|
// suggest that this is an library function.
|
|
|
|
void* temp_v1;
|
|
u32 mask;
|
|
|
|
mask = __osDisableInt();
|
|
temp_v1 = D_800AA41C;
|
|
D_800AA41C = arg0;
|
|
*arg0 = temp_v1;
|
|
__osRestoreInt(mask);
|
|
return 0;
|
|
}
|