mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
22 lines
No EOL
454 B
C++
22 lines
No EOL
454 B
C++
#pragma once
|
|
#include "helpers.hpp"
|
|
#include "kernel_types.hpp"
|
|
#include "logger.hpp"
|
|
#include "memory.hpp"
|
|
#include "result/result.hpp"
|
|
|
|
class LCDService {
|
|
using Handle = HorizonHandle;
|
|
|
|
Handle handle = KernelHandles::LCD;
|
|
Memory& mem;
|
|
MAKE_LOG_FUNCTION(log, gspLCDLogger)
|
|
|
|
// Service commands
|
|
void setLedForceOff(u32 messagePointer);
|
|
|
|
public:
|
|
LCDService(Memory& mem) : mem(mem) {}
|
|
void reset();
|
|
void handleSyncRequest(u32 messagePointer);
|
|
}; |