diff options
| author | Random <28494085+Random06457@users.noreply.github.com> | 2020-04-08 18:36:15 +0200 |
|---|---|---|
| committer | Random <28494085+Random06457@users.noreply.github.com> | 2020-04-08 18:36:15 +0200 |
| commit | d0cf6e153b4f47f04f73656a1534314208b2f596 (patch) | |
| tree | 083231f01a3ba973764514d43bc30579bbcf5b20 /include | |
| parent | 0a25ab74c4f3399c7fbcedf931604960cedd798f (diff) | |
Decompile sleep.c and printutils.c
- Decompile sleep.c (OK)
- Decompile printutils.c (OK)
- Fix 1 non-matching in z_room.c
- Get rid of some magic numbers
Diffstat (limited to 'include')
| -rw-r--r-- | include/functions.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/include/functions.h b/include/functions.h index 9dcdad1af..5cc3b46f5 100644 --- a/include/functions.h +++ b/include/functions.h @@ -2309,8 +2309,13 @@ void __osDisplayArena(Arena* arena); void ArenaImpl_FaultClient(Arena* arena); u32 __osCheckArena(Arena* arena); u8 func_800FF334(Arena* arena); -// ? func_800FF3A0(?); -// ? func_800FF4AC(?); +void PrintUtils_VPrintf(char** arg0, const char* fmt, va_list args); +void PrintUtils_Printf(void* arg0, const char* fmt, ...); +void Sleep_Cycles(OSTime cycles); +void Sleep_Nsec(u32 nsec); +void Sleep_Usec(u32 usec); +void Sleep_Msec(u32 ms); +void Sleep_Sec(u32 sec); // ? func_800FF540(?); // ? func_800FF5A8(?); // ? func_800FF62C(?); |
