mirror of
https://github.com/zeldaret/tp
synced 2026-08-17 05:22:00 -04:00
d_kyeff, d_kyeff2, m_Do_printf, and m_Do_graphic (#109)
* Split d_kyeff * Partially matched d_kyeff * split d_kyeff2 * Match d_kyeff2 * split m_Do_printf * m_Do_printf partially matched * hotfix and clang-format * split m_Do_graphic * rename symbols in m_Do_graphic * Match a few functions in m_Do_graphic * Fix Merge Errors * Delete sh.exe.stackdump * Update OSReportInit
This commit is contained in:
+14
-5
@@ -122,6 +122,8 @@ struct OSThread {
|
||||
void* data[2];
|
||||
};
|
||||
|
||||
struct __va_list_struct {};
|
||||
|
||||
extern "C" {
|
||||
s32 OSEnableScheduler(void);
|
||||
s32 OSDisableScheduler(void);
|
||||
@@ -152,7 +154,6 @@ s32 OSGetResetCode(void);
|
||||
u32 OSGetSoundMode(void);
|
||||
void OSSetSoundMode(OSSoundMode mode);
|
||||
|
||||
void OSReportInit(void);
|
||||
void OSAttention(char* msg, ...);
|
||||
void OSPanic(char* file, s32 line, char* fmt, ...);
|
||||
void OSReport(char* fmt, ...);
|
||||
@@ -164,9 +165,7 @@ void OSReportDisable(void);
|
||||
void OSReportEnable(void);
|
||||
void OSReportForceEnableOff(void);
|
||||
void OSReportForceEnableOn(void);
|
||||
void OSReportInit(void);
|
||||
void OSSwitchFiberEx(u32, u32, u32, u32, u32, u32);
|
||||
void OSVAttention(char*, /*__gnuc_va_list*/ void*);
|
||||
void OSVReport(const char* format, __va_list_struct* list);
|
||||
|
||||
void OSTicksToCalendarTime(OSTime ticks, OSCalendarTime* out_time);
|
||||
OSTime OSGetTime(void);
|
||||
@@ -195,7 +194,17 @@ void OSResetSystem(s32 param_1, u32 param_2, s32 param_3);
|
||||
void OSSetSaveRegion(void* start, void* end);
|
||||
|
||||
void LCDisable(void);
|
||||
};
|
||||
|
||||
void OSReportInit__Fv(void); // needed for inline asm
|
||||
|
||||
u8* OSGetStackPointer(void);
|
||||
}; // extern "C"
|
||||
|
||||
void OSSwitchFiberEx(u32, u32, u32, u32, u32, u32);
|
||||
|
||||
void OSVAttention(const char* fmt, __va_list_struct* va_list);
|
||||
|
||||
void OSReportInit(void);
|
||||
|
||||
#include "dvd/dvd.h"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user