mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-14 15:14:23 -04:00
kern: implement port debug
This commit is contained in:
parent
8a4bf6a0a8
commit
0acd79c8c2
6 changed files with 132 additions and 6 deletions
|
@ -73,6 +73,13 @@ namespace ams::kern::svc {
|
|||
}
|
||||
}
|
||||
break;
|
||||
case ams::svc::KernelDebugType_Port:
|
||||
if (arg0 == static_cast<u64>(-1)) {
|
||||
KDumpObject::DumpPort();
|
||||
} else {
|
||||
KDumpObject::DumpPort(arg0);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue