[Y2R] Implement some srervice calls

This commit is contained in:
wheremyfoodat 2023-03-13 00:31:09 +02:00
parent 9a6640cae2
commit b564029a8f
2 changed files with 33 additions and 1 deletions

View file

@ -9,7 +9,12 @@ class Y2RService {
Memory& mem;
MAKE_LOG_FUNCTION(log, y2rLogger)
bool transferEndInterruptEnabled;
// Service commands
void driverInitialize(u32 messagePointer);
void pingProcess(u32 messagePointer);
void setTransferEndInterrupt(u32 messagePointer);
public:
Y2RService(Memory& mem) : mem(mem) {}