Panda3DS/src/core/services/dsp.cpp
2022-10-10 17:52:21 +03:00

21 lines
No EOL
366 B
C++

#include "services/dsp.hpp"
namespace DSPCommands {
enum : u32 {
};
}
namespace Result {
enum : u32 {
Success = 0,
};
}
void DSPService::reset() {}
void DSPService::handleSyncRequest(u32 messagePointer) {
const u32 command = mem.read32(messagePointer);
switch (command) {
default: Helpers::panic("DSP service requested. Command: %08X\n", command);
}
}