Implement aligned funcs

This commit is contained in:
Prakxo
2023-02-15 09:41:25 +00:00
parent 79bb2ae6e3
commit 169f213772
15 changed files with 112 additions and 18 deletions
+2 -1
View File
@@ -5,7 +5,8 @@
extern "C" {
#endif
asm s32 OSGetTime(void);
typedef s64 OSTime;
OSTime OSGetTime(void);
#ifdef __cplusplus
}
+2
View File
@@ -3,11 +3,13 @@
#include "types.h"
#include "dolphin/OS/OSContext.h"
#include "va_args.h"
#ifdef __cplusplus
extern "C" {
#endif
void OSReport(const char*, ...);
void OSVReport(const char* format, va_list list);
asm BOOL OSDisableInterrupts(void);
asm BOOL OSEnableInterrupts(void);