Merge pull request #2425 from Irastris/stubs

Update aurora, remove OSCache stubs
This commit is contained in:
TakaRikka
2026-09-11 14:17:37 -07:00
committed by GitHub
3 changed files with 1 additions and 42 deletions
+1 -1
-8
View File
@@ -68,11 +68,3 @@ int strnicmp(const char* str1, const char* str2, int n) {
return 0;
}
#endif
void DCZeroRange(void* addr, uint32_t nBytes) {
#if defined(_MSC_VER) || TARGET_ANDROID
memset(addr, 0, nBytes);
#else
bzero(addr, nBytes);
#endif
}
-33
View File
@@ -239,28 +239,6 @@ void SoundRevID(int a, int b) {
STUB_LOG();
}
#pragma mark DC
void DCFlushRange(void* addr, u32 nBytes) {
// Not needed on PC.
}
void DCFlushRangeNoSync(void* addr, u32 nBytes) {
// Not needed on PC.
}
void DCInvalidateRange(void* addr, u32 nBytes) {
// Not needed on PC.
}
void DCStoreRange(void* addr, u32 nBytes) {
// Not needed on PC.
}
void DCStoreRangeNoSync(void* addr, u32 nBytes) {
// Not needed on PC.
}
#pragma mark EXI
BOOL EXIDeselect(int chan) {
@@ -298,12 +276,6 @@ BOOL EXIUnlock(int chan) {
return FALSE;
}
#pragma mark LC
void LCEnable() {
STUB_LOG();
}
// OS-related functions consolidated under "# pragma mark OS" further up
#pragma mark VI
@@ -1036,11 +1008,6 @@ extern "C" void KPADEnableDPD(s32) {
STUB_LOG();
}
// LC (consolidated above)
void LCDisable(void) {
STUB_LOG();
}
#pragma mark PPC Arch
// MSR stuff?
void PPCHalt() {