mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
15 lines
No EOL
339 B
C++
15 lines
No EOL
339 B
C++
#include "ipc.hpp"
|
|
#include "services/news_u.hpp"
|
|
|
|
namespace NewsCommands {
|
|
enum : u32 {};
|
|
}
|
|
|
|
void NewsUService::reset() {}
|
|
|
|
void NewsUService::handleSyncRequest(u32 messagePointer) {
|
|
const u32 command = mem.read32(messagePointer);
|
|
switch (command) {
|
|
default: Helpers::panic("news:u service requested. Command: %08X\n", command);
|
|
}
|
|
} |