mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-03 12:27:21 +12:00
Stub FS service, we now get to main in libctru
This commit is contained in:
parent
083a0d04d7
commit
91356f1de9
6 changed files with 70 additions and 4 deletions
|
@ -12,9 +12,10 @@ namespace KernelHandles {
|
|||
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
|
||||
|
||||
MinServiceHandle = APT,
|
||||
MaxServiceHandle = HID
|
||||
MaxServiceHandle = FS
|
||||
};
|
||||
|
||||
// Returns whether "handle" belongs to one of the OS services
|
||||
|
@ -27,6 +28,7 @@ namespace KernelHandles {
|
|||
switch (handle) {
|
||||
case APT: return "APT";
|
||||
case HID: return "HID";
|
||||
case FS: return "FS";
|
||||
default: return "Unknown";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue