mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
31 lines
No EOL
685 B
C++
31 lines
No EOL
685 B
C++
#pragma once
|
|
#include "helpers.hpp"
|
|
#include "kernel_types.hpp"
|
|
#include "logger.hpp"
|
|
#include "memory.hpp"
|
|
#include "result/result.hpp"
|
|
|
|
class Kernel;
|
|
|
|
class LDRService {
|
|
using Handle = HorizonHandle;
|
|
|
|
Handle handle = KernelHandles::LDR_RO;
|
|
Memory& mem;
|
|
Kernel& kernel;
|
|
MAKE_LOG_FUNCTION(log, ldrLogger)
|
|
|
|
u32 loadedCRS;
|
|
|
|
// Service commands
|
|
void initialize(u32 messagePointer);
|
|
void linkCRO(u32 messagePointer);
|
|
void loadCRO(u32 messagePointer, bool isNew);
|
|
void loadCRR(u32 messagePointer);
|
|
void unloadCRO(u32 messagePointer);
|
|
|
|
public:
|
|
LDRService(Memory& mem, Kernel& kernel) : mem(mem), kernel(kernel) {}
|
|
void reset();
|
|
void handleSyncRequest(u32 messagePointer);
|
|
}; |