[DSP] Add empty service

This commit is contained in:
wheremyfoodat 2022-10-10 17:50:26 +03:00
parent 6c3acda34e
commit 4c8ddd2f10
7 changed files with 50 additions and 4 deletions

21
src/core/services/dsp.cpp Normal file
View file

@ -0,0 +1,21 @@
#include "services/dsp.hpp"
namespace DSPCommands {
enum : u32 {
};
}
namespace Result {
enum : u32 {
Success = 0,
};
}
void DSPService::reset() {}
void DSPService::handleSyncRequest(u32 messagePointer) {
const u32 command = mem.read32(messagePointer);
switch (command) {
default: Helpers::panic("LCD service requested. Command: %08X\n", command);
}
}