mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-20 20:49:12 +12:00
[IR:USER] Add empty service
This commit is contained in:
parent
46207a3995
commit
1c08912a59
7 changed files with 47 additions and 2 deletions
15
src/core/services/ir_user.cpp
Normal file
15
src/core/services/ir_user.cpp
Normal file
|
@ -0,0 +1,15 @@
|
|||
#include "ipc.hpp"
|
||||
#include "services/ir_user.hpp"
|
||||
|
||||
namespace IRUserCommands {
|
||||
enum : u32 {};
|
||||
}
|
||||
|
||||
void IRUserService::reset() {}
|
||||
|
||||
void IRUserService::handleSyncRequest(u32 messagePointer) {
|
||||
const u32 command = mem.read32(messagePointer);
|
||||
switch (command) {
|
||||
default: Helpers::panic("ir:USER service requested. Command: %08X\n", command);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue