mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-05-24 04:26:25 +12:00
Add empty csnd service
This commit is contained in:
parent
f1c805d38f
commit
68346d73dc
7 changed files with 43 additions and 2 deletions
src/core/services
16
src/core/services/csnd.cpp
Normal file
16
src/core/services/csnd.cpp
Normal file
|
@ -0,0 +1,16 @@
|
|||
#include "services/csnd.hpp"
|
||||
|
||||
#include "ipc.hpp"
|
||||
#include "result/result.hpp"
|
||||
|
||||
void CSNDService::reset() {}
|
||||
|
||||
void CSNDService::handleSyncRequest(u32 messagePointer) {
|
||||
const u32 command = mem.read32(messagePointer);
|
||||
|
||||
switch (command) {
|
||||
default:
|
||||
Helpers::panic("Unimplemented CSND service requested. Command: %08X\n", command);
|
||||
break;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue