[SRV] Empty CECD/MIC services for MK7 and 3D Land

This commit is contained in:
wheremyfoodat 2022-10-16 12:27:44 +03:00
parent 1147824709
commit 55ca643c5d
9 changed files with 100 additions and 3 deletions

21
src/core/services/mic.cpp Normal file
View file

@ -0,0 +1,21 @@
#include "services/mic.hpp"
namespace MICCommands {
enum : u32 {
};
}
namespace Result {
enum : u32 {
Success = 0,
};
}
void MICService::reset() {}
void MICService::handleSyncRequest(u32 messagePointer) {
const u32 command = mem.read32(messagePointer);
switch (command) {
default: Helpers::panic("MIC service requested. Command: %08X\n", command);
}
}