[IR:USER] Add empty service

This commit is contained in:
wheremyfoodat 2023-07-08 19:35:59 +03:00
parent 46207a3995
commit 1c08912a59
7 changed files with 47 additions and 2 deletions

View 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);
}
}