summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-03-02 04:21:08 +0100
committerbunnei <bunneidev@gmail.com>2015-03-02 04:21:08 +0100
commit5d0e55768958137a516d0a6e397e4a91693bc08c (patch)
tree811a311e4428ae958fe04ecd8e34147f3952135a /src/core
parentMerge pull request #616 from archshift/5551 (diff)
parentServices/PTM: Stubbed PTM_Sysm::IsLegacyPowerOff. (diff)
downloadyuzu-5d0e55768958137a516d0a6e397e4a91693bc08c.tar
yuzu-5d0e55768958137a516d0a6e397e4a91693bc08c.tar.gz
yuzu-5d0e55768958137a516d0a6e397e4a91693bc08c.tar.bz2
yuzu-5d0e55768958137a516d0a6e397e4a91693bc08c.tar.lz
yuzu-5d0e55768958137a516d0a6e397e4a91693bc08c.tar.xz
yuzu-5d0e55768958137a516d0a6e397e4a91693bc08c.tar.zst
yuzu-5d0e55768958137a516d0a6e397e4a91693bc08c.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/ptm_sysm.cpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/core/hle/service/ptm_sysm.cpp b/src/core/hle/service/ptm_sysm.cpp
index 96ef2dce0..dc4a9c569 100644
--- a/src/core/hle/service/ptm_sysm.cpp
+++ b/src/core/hle/service/ptm_sysm.cpp
@@ -12,6 +12,18 @@
namespace PTM_SYSM {
+/**
+ * Returns whether the system is powering off (?)
+ * Outputs:
+ * 1: Result code, 0 on success, otherwise error code
+ * 2: Whether the system is going through a power off
+ */
+void IsLegacyPowerOff(Service::Interface* self) {
+ u32* cmd_buff = Kernel::GetCommandBuffer();
+ cmd_buff[1] = RESULT_SUCCESS.raw;
+ cmd_buff[2] = 0;
+}
+
const Interface::FunctionInfo FunctionTable[] = {
{0x040100C0, nullptr, "SetRtcAlarmEx"},
{0x04020042, nullptr, "ReplySleepQuery"},
@@ -37,7 +49,7 @@ const Interface::FunctionInfo FunctionTable[] = {
{0x080C0080, nullptr, "SetUserTime"},
{0x080D0000, nullptr, "InvalidateSystemTime"},
{0x080E0140, nullptr, "NotifyPlayEvent"},
- {0x080F0000, nullptr, "IsLegacyPowerOff"},
+ {0x080F0000, IsLegacyPowerOff, "IsLegacyPowerOff"},
{0x08100000, nullptr, "ClearLegacyPowerOff"},
{0x08110000, nullptr, "GetShellStatus"},
{0x08120000, nullptr, "IsShutdownByBatteryEmpty"},