Block DSP commands, no DSP emulated

This commit is contained in:
PJB3005
2026-03-12 11:48:02 +01:00
parent 45e55f1384
commit e07fbef818
2 changed files with 7 additions and 3 deletions
+4
View File
@@ -21,6 +21,10 @@ static void setup_callback(u16 param_0) {
}
void DsetupTable(u32 channelCount, u32 channelBufferAddress, u32 param_2, u32 param_3, u32 param_4) {
#if TARGET_PC
return;
#endif
u32 table[5];
table[0] = (channelCount & 0xFFFF) | 0x81000000;
table[1] = channelBufferAddress;
+3 -3
View File
@@ -550,9 +550,9 @@ void DspBoot(void (*requestCallback)(void*)) {
}
int DSPSendCommands2(u32* param_1, u32 param_2, void (*callBack)(u16)) {
callBack(param_1[0]);
STUB_RET(1);
#if TARGET_PC
OSPanic(__FILE__, __LINE__, "We do not have a DSP");
#endif
s32 i;
BOOL interruptFlag;
s32 startWorkStatus;