[ACT/MIC/NFC] Stub function for Captain Toad

This commit is contained in:
wheremyfoodat 2023-04-24 21:33:59 +03:00
parent 269efc3c43
commit 3935820c05
11 changed files with 144 additions and 9 deletions

19
include/services/nfc.hpp Normal file
View file

@ -0,0 +1,19 @@
#pragma once
#include "helpers.hpp"
#include "kernel_types.hpp"
#include "logger.hpp"
#include "memory.hpp"
class NFCService {
Handle handle = KernelHandles::NFC;
Memory& mem;
MAKE_LOG_FUNCTION(log, nfcLogger)
// Service commands
void initialize(u32 messagePointer);
public:
NFCService(Memory& mem) : mem(mem) {}
void reset();
void handleSyncRequest(u32 messagePointer);
};