mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-19 12:10:59 +12:00
[DSP] Add empty service
This commit is contained in:
parent
6c3acda34e
commit
4c8ddd2f10
7 changed files with 50 additions and 4 deletions
21
src/core/services/dsp.cpp
Normal file
21
src/core/services/dsp.cpp
Normal file
|
@ -0,0 +1,21 @@
|
|||
#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("LCD service requested. Command: %08X\n", command);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue