blob: acee90fb9d7aebbbd866e0e4657fcb10cfe34ebd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "global.h"
void func_80084940(void) {
u32 spStatus = __osSpGetStatus();
u32 dpStatus = osDpGetStatus();
if (spStatus && dpStatus) {} // stubbed debug prints
}
void func_80084968(void) {
func_80084940();
osDpSetStatus(0x28);
__osSpSetStatus(0x4082);
func_80084940();
}
|