mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-20 04:29:13 +12:00
This should clean up all HLE errorcode in the codebase. I didn't removed Rust::Result as this should be a cleanup for another iteration.
16 lines
No EOL
334 B
C++
16 lines
No EOL
334 B
C++
#include "services/gsp_lcd.hpp"
|
|
#include "ipc.hpp"
|
|
|
|
namespace LCDCommands {
|
|
enum : u32 {
|
|
};
|
|
}
|
|
|
|
void LCDService::reset() {}
|
|
|
|
void LCDService::handleSyncRequest(u32 messagePointer) {
|
|
const u32 command = mem.read32(messagePointer);
|
|
switch (command) {
|
|
default: Helpers::panic("LCD service requested. Command: %08X\n", command);
|
|
}
|
|
} |