mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-03 12:27:21 +12:00
Add empty cfg:u service
This commit is contained in:
parent
e02ef8a213
commit
1ddba7737f
7 changed files with 55 additions and 9 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue