hle: Add more missing functions

This commit is contained in:
scribam 2019-04-05 20:14:01 +02:00 committed by Ivan
parent 7625f7df11
commit f30af3ccd2
24 changed files with 406 additions and 7 deletions

View file

@ -15,13 +15,13 @@ s32 cellRtcAlarmUnregister()
return CELL_OK;
}
s32 cellRtcAlarmGetStatus()
s32 cellRtcAlarmNotification()
{
UNIMPLEMENTED_FUNC(cellRtcAlarm);
return CELL_OK;
}
s32 cellRtcAlarm_AD8D9839()
s32 cellRtcAlarmGetStatus()
{
UNIMPLEMENTED_FUNC(cellRtcAlarm);
return CELL_OK;
@ -37,8 +37,8 @@ DECLARE(ppu_module_manager::cellRtcAlarm)("cellRtcAlarm", []()
{
REG_FUNC(cellRtcAlarm, cellRtcAlarmRegister);
REG_FUNC(cellRtcAlarm, cellRtcAlarmUnregister);
REG_FUNC(cellRtcAlarm, cellRtcAlarmNotification);
REG_FUNC(cellRtcAlarm, cellRtcAlarmGetStatus);
REG_FNID(cellRtcAlarm, 0xAD8D9839, cellRtcAlarm_AD8D9839);
REG_FNID(cellRtcAlarm, 0xB287748C, cellRtcAlarm_B287748C);
});