clkrst: Stub/Implement IClkrstManager and IClkrstSession calls (#2692)

This PR stubs and implements some clkrst call because they are used to overclock the Switch hardware and it's pointless in our case as we emulate the system.
Everything was done checked by RE.

Fixes #2686
This commit is contained in:
Ac_K 2021-09-29 01:03:35 +02:00 committed by GitHub
parent f4f496cb48
commit 33dc4c9ce4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 220 additions and 3 deletions

View file

@ -0,0 +1,12 @@
namespace Ryujinx.HLE.HOS.Services.Pcv
{
enum ResultCode
{
ModuleId = 30,
ErrorCodeShift = 9,
Success = 0,
InvalidArgument = (5 << ErrorCodeShift) | ModuleId
}
}