Panda3DS/src/core/services/gsp_lcd.cpp
2022-09-18 16:38:10 +03:00

21 lines
No EOL
370 B
C++

#include "services/gsp_lcd.hpp"
namespace LCDCommands {
enum : u32 {
};
}
namespace Result {
enum : u32 {
Success = 0,
};
}
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);
}
}