[SRV] Empty CECD/MIC services for MK7 and 3D Land
This commit is contained in:
21
src/core/services/mic.cpp
Normal file
21
src/core/services/mic.cpp
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user