1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#include <libultraship.h>
#include <libultraship/libultra.h>
#include <string.h>
#include <stdio.h>
#include <stubs.h>
#include "save.h"
struct state_pak {
OSPfsState state;
FILE* file;
};
struct state_pak openFile[16];
int fileIndex = 0;
u32 osTvType = OS_TV_NTSC;
u32 osResetType;
u8 osAppNmiBuffer[64];
void rmonPrintf(const char* fmt, ...) {
}
void func_80040030(u8* arg0, u8* arg1) {
}
void func_80040174(void* arg0, s32 arg1, s32 arg2) {
}
s32 osAiSetFrequency(u32 freq) {
return 1;
}
void mio0decode(u8* arg0, u8* arg1) {
arg1 = arg0;
}
s32 mio0encode(s32 input, s32 arg1, s32 arg2) {
return 1;
}
void osStartThread(OSThread* thread) {
}
void osCreateThread(OSThread* thread, OSId id, void (*entry)(void*), void* arg, void* sp, OSPri pri) {
}
void osInitialize(void) {
}
void osSetThreadPri(OSThread* thread, OSPri pri) {
}
void osSpTaskLoad(OSTask* task) {
}
void osSpTaskStartGo(OSTask* task) {
}
void osSpTaskYield(void) {
}
OSYieldResult osSpTaskYielded(OSTask* task) {
}
|