more asset preparation

This commit is contained in:
Prakxo
2023-03-14 08:36:15 +00:00
parent b3050638b2
commit bcebb21d48
14 changed files with 174 additions and 11 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
#include "types.h"
#include "dolphin/os/OSMemory.h"
#include "dolphin/os.h"
#include "dolphin/os/OSInterrupt.h"
asm void Config24MB();
asm void Config48MB();
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef FAULT_H
#define FAULT_H
#include "types.h"
#include "dolphin/OS/os.h"
#include "dolphin/os/OSInterrupt.h"
#include "libultra/libultra.h"
+19
View File
@@ -0,0 +1,19 @@
#ifndef LIB_OS_REPORT_H
#define LIB_OS_REPORT_H
#include "types.h"
#include "va_args.h"
void OSReportDisable(void);
void OSReportEnable(void);
void OSVReport(const char*, va_list);
void OSReport(const char*,...);
void OSPanic(const char*, u32, const char*,...);
void OSChangeBootMode(u32);
void OSDVDFatalError(void);
#endif