Adding OSCache.h and dsp.h stubs

This commit is contained in:
kipcode66
2026-01-26 21:40:54 -05:00
parent 17c77af044
commit 1a680f0a69
+33
View File
@@ -7,6 +7,8 @@
#include <dolphin/ar.h>
#include <dolphin/card.h>
#include <dolphin/mtx.h>
#include <dolphin/os/OSCache.h>
#include <dolphin/dsp.h>
#include <stdarg.h>
#include <stdio.h>
@@ -620,3 +622,34 @@ void C_VECHalfAngle(const Vec* a, const Vec* b, Vec* half) {
void C_VECReflect(const Vec* src, const Vec* normal, Vec* dst) {
puts("C_VECReflect is a stub");
}
void DCZeroRange(void* addr, u32 nBytes) {
puts("C_VECReflect is a stub");
}
void DSPAssertInt(void) {
puts("DSPAssertInt is a stub");
}
u32 DSPCheckMailFromDSP(void) {
puts("DSPCheckMailFromDSP is a stub");
return 0;
}
u32 DSPCheckMailToDSP(void) {
puts("DSPCheckMailToDSP is a stub");
return 0;
}
void DSPInit(void) {
puts("DSPInit is a stub");
}
u32 DSPReadMailFromDSP(void) {
puts("DSPReadMailFromDSP is a stub");
return 0;
}
void DSPSendMailToDSP(u32 mail) {
puts("DSPSendMailToDSP is a stub");
}