mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 22:55:40 +12:00
15 lines
No EOL
303 B
C++
15 lines
No EOL
303 B
C++
#pragma once
|
|
#include "helpers.hpp"
|
|
#include "logger.hpp"
|
|
#include "memory.hpp"
|
|
|
|
class DSPService {
|
|
Handle handle = KernelHandles::DSP;
|
|
Memory& mem;
|
|
MAKE_LOG_FUNCTION(log, dspServiceLogger)
|
|
|
|
public:
|
|
DSPService(Memory& mem) : mem(mem) {}
|
|
void reset();
|
|
void handleSyncRequest(u32 messagePointer);
|
|
}; |