2020-12-05 13:08:24 +01:00
|
|
|
#include "stdafx.h"
|
2017-04-19 20:24:52 +02:00
|
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
|
|
2018-08-25 14:39:00 +02:00
|
|
|
LOG_CHANNEL(cellRtcAlarm);
|
2017-04-19 20:24:52 +02:00
|
|
|
|
2020-07-16 12:14:57 +02:00
|
|
|
error_code cellRtcAlarmRegister()
|
2017-04-19 20:24:52 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellRtcAlarm);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-16 12:14:57 +02:00
|
|
|
error_code cellRtcAlarmUnregister()
|
2017-04-19 20:24:52 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellRtcAlarm);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-16 12:14:57 +02:00
|
|
|
error_code cellRtcAlarmNotification()
|
2017-04-19 20:24:52 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellRtcAlarm);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-16 12:14:57 +02:00
|
|
|
error_code cellRtcAlarmStopRunning()
|
2017-04-19 20:24:52 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellRtcAlarm);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-16 12:14:57 +02:00
|
|
|
error_code cellRtcAlarmGetStatus()
|
2017-04-19 20:24:52 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellRtcAlarm);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DECLARE(ppu_module_manager::cellRtcAlarm)("cellRtcAlarm", []()
|
2025-04-05 21:50:45 +02:00
|
|
|
{
|
|
|
|
|
REG_FUNC(cellRtcAlarm, cellRtcAlarmRegister);
|
|
|
|
|
REG_FUNC(cellRtcAlarm, cellRtcAlarmUnregister);
|
|
|
|
|
REG_FUNC(cellRtcAlarm, cellRtcAlarmNotification);
|
|
|
|
|
REG_FUNC(cellRtcAlarm, cellRtcAlarmStopRunning);
|
|
|
|
|
REG_FUNC(cellRtcAlarm, cellRtcAlarmGetStatus);
|
|
|
|
|
});
|