mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-19 20:19:13 +12:00
Add SSL service
This commit is contained in:
parent
3c610fa332
commit
fa91c4effb
7 changed files with 46 additions and 2 deletions
17
src/core/services/ssl.cpp
Normal file
17
src/core/services/ssl.cpp
Normal file
|
@ -0,0 +1,17 @@
|
|||
#include "ipc.hpp"
|
||||
#include "result/result.hpp"
|
||||
#include "services/ssl.hpp"
|
||||
|
||||
namespace SSLCommands {
|
||||
enum : u32 {
|
||||
};
|
||||
}
|
||||
|
||||
void SSLService::reset() {}
|
||||
|
||||
void SSLService::handleSyncRequest(u32 messagePointer) {
|
||||
const u32 command = mem.read32(messagePointer);
|
||||
switch (command) {
|
||||
default: Helpers::panic("SSL service requested. Command: %08X\n", command);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue