Add empty cfg:u service

This commit is contained in:
wheremyfoodat 2022-10-10 23:44:52 +03:00
parent e02ef8a213
commit 1ddba7737f
7 changed files with 55 additions and 9 deletions

View file

@ -11,12 +11,13 @@ namespace KernelHandles {
CurrentThread = 0xFFFF8000, // Used by the original kernel
CurrentProcess = 0xFFFF8001, // Used by the original kernel
APT = 0xFFFF8002, // App Title something service?
HID = 0xFFFF8003, // Handles everything input-related including gyro
FS = 0xFFFF8004, // Filesystem service
GPU = 0xFFFF8005, // GPU service
DSP = 0xFFFF8006, // DSP service (Used for audio decoding and output)
LCD = 0xFFFF8007, // LCD service (Used for configuring the displays)
NDM = 0xFFFF8008, // ?????
CFG = 0xFFFF8003, // Console & region info
HID = 0xFFFF8004, // Handles everything input-related including gyro
FS = 0xFFFF8005, // Filesystem service
GPU = 0xFFFF8006, // GPU service
DSP = 0xFFFF8007, // DSP service (Used for audio decoding and output)
LCD = 0xFFFF8008, // LCD service (Used for configuring the displays)
NDM = 0xFFFF8009, // ?????
MinServiceHandle = APT,
MaxServiceHandle = NDM,
@ -48,6 +49,7 @@ namespace KernelHandles {
static const char* getServiceName(Handle handle) {
switch (handle) {
case APT: return "APT";
case CFG: return "CFG";
case HID: return "HID";
case FS: return "FS";
case DSP: return "DSP";