mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-03 12:27:21 +12:00
[DSP] Add empty service
This commit is contained in:
parent
6c3acda34e
commit
4c8ddd2f10
7 changed files with 50 additions and 4 deletions
|
@ -14,8 +14,9 @@ namespace KernelHandles {
|
|||
HID = 0xFFFF8003, // Handles everything input-related including gyro
|
||||
FS = 0xFFFF8004, // Filesystem service
|
||||
GPU = 0xFFFF8005, // GPU service
|
||||
LCD = 0xFFFF8006, // LCD service
|
||||
NDM = 0xFFFF8007, // ?????
|
||||
DSP = 0xFFFF8006, // DSP service (Used for audio decoding and output)
|
||||
LCD = 0xFFFF8007, // LCD service (Used for configuring the displays)
|
||||
NDM = 0xFFFF8008, // ?????
|
||||
|
||||
MinServiceHandle = APT,
|
||||
MaxServiceHandle = NDM,
|
||||
|
@ -49,6 +50,7 @@ namespace KernelHandles {
|
|||
case APT: return "APT";
|
||||
case HID: return "HID";
|
||||
case FS: return "FS";
|
||||
case DSP: return "DSP";
|
||||
case GPU: return "GPU";
|
||||
case LCD: return "LCD";
|
||||
case NDM: return "NDM";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue