mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-08 15:15:40 +12:00
21 lines
No EOL
366 B
C++
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);
|
|
}
|
|
} |