Add SSL service

This commit is contained in:
wheremyfoodat 2023-08-12 00:12:20 +03:00
parent 3c610fa332
commit fa91c4effb
7 changed files with 46 additions and 2 deletions

17
src/core/services/ssl.cpp Normal file
View 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);
}
}