hle: Add some more functions

This commit is contained in:
scribam 2019-04-10 19:34:44 +02:00 committed by Ivan
parent ec2d882199
commit 1d947daa81
7 changed files with 124 additions and 6 deletions

View file

@ -21,13 +21,13 @@ s32 cellRtcAlarmNotification()
return CELL_OK;
}
s32 cellRtcAlarmGetStatus()
s32 cellRtcAlarmStopRunning()
{
UNIMPLEMENTED_FUNC(cellRtcAlarm);
return CELL_OK;
}
s32 cellRtcAlarm_B287748C()
s32 cellRtcAlarmGetStatus()
{
UNIMPLEMENTED_FUNC(cellRtcAlarm);
return CELL_OK;
@ -38,7 +38,6 @@ DECLARE(ppu_module_manager::cellRtcAlarm)("cellRtcAlarm", []()
REG_FUNC(cellRtcAlarm, cellRtcAlarmRegister);
REG_FUNC(cellRtcAlarm, cellRtcAlarmUnregister);
REG_FUNC(cellRtcAlarm, cellRtcAlarmNotification);
REG_FUNC(cellRtcAlarm, cellRtcAlarmStopRunning);
REG_FUNC(cellRtcAlarm, cellRtcAlarmGetStatus);
REG_FNID(cellRtcAlarm, 0xB287748C, cellRtcAlarm_B287748C);
});