summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolcaEM <63682805+VolcaEM@users.noreply.github.com>2020-06-27 02:33:55 +0200
committerGitHub <noreply@github.com>2020-06-27 02:33:55 +0200
commit6e14edbcc22c33bf32702011eb27412b1807cfe2 (patch)
treea7c514ac357d8e98dbc93f1eb071f00c4d1af44e
parentbcat: Update function tables and add missing classes (#4172) (diff)
downloadyuzu-6e14edbcc22c33bf32702011eb27412b1807cfe2.tar
yuzu-6e14edbcc22c33bf32702011eb27412b1807cfe2.tar.gz
yuzu-6e14edbcc22c33bf32702011eb27412b1807cfe2.tar.bz2
yuzu-6e14edbcc22c33bf32702011eb27412b1807cfe2.tar.lz
yuzu-6e14edbcc22c33bf32702011eb27412b1807cfe2.tar.xz
yuzu-6e14edbcc22c33bf32702011eb27412b1807cfe2.tar.zst
yuzu-6e14edbcc22c33bf32702011eb27412b1807cfe2.zip
-rw-r--r--src/core/hle/service/bpc/bpc.cpp20
1 files changed, 13 insertions, 7 deletions
diff --git a/src/core/hle/service/bpc/bpc.cpp b/src/core/hle/service/bpc/bpc.cpp
index 1c1ecdb60..fac6b2f9c 100644
--- a/src/core/hle/service/bpc/bpc.cpp
+++ b/src/core/hle/service/bpc/bpc.cpp
@@ -23,9 +23,14 @@ public:
{5, nullptr, "GetBoardPowerControlEvent"},
{6, nullptr, "GetSleepButtonState"},
{7, nullptr, "GetPowerEvent"},
- {8, nullptr, "Unknown1"},
- {9, nullptr, "Unknown2"},
- {10, nullptr, "Unknown3"},
+ {8, nullptr, "CreateWakeupTimer"},
+ {9, nullptr, "CancelWakeupTimer"},
+ {10, nullptr, "EnableWakeupTimerOnDevice"},
+ {11, nullptr, "CreateWakeupTimerEx"},
+ {12, nullptr, "GetLastEnabledWakeupTimerType"},
+ {13, nullptr, "CleanAllWakeupTimers"},
+ {14, nullptr, "Unknown"},
+ {15, nullptr, "Unknown2"},
};
// clang-format on
@@ -38,10 +43,11 @@ public:
explicit BPC_R() : ServiceFramework{"bpc:r"} {
// clang-format off
static const FunctionInfo functions[] = {
- {0, nullptr, "GetExternalRtcValue"},
- {1, nullptr, "SetExternalRtcValue"},
- {2, nullptr, "ReadExternalRtcResetFlag"},
- {3, nullptr, "ClearExternalRtcResetFlag"},
+ {0, nullptr, "GetRtcTime"},
+ {1, nullptr, "SetRtcTime"},
+ {2, nullptr, "GetRtcResetDetected"},
+ {3, nullptr, "ClearRtcResetDetected"},
+ {4, nullptr, "SetUpRtcResetOnShutdown"},
};
// clang-format on