mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-20 20:49:12 +12:00
[SRV] Empty CECD/MIC services for MK7 and 3D Land
This commit is contained in:
parent
1147824709
commit
55ca643c5d
9 changed files with 100 additions and 3 deletions
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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue