rpcsx/rpcs3/Emu/Cell/Modules/cellRtcAlarm.cpp

44 lines
863 B
C++
Raw Normal View History

2020-07-16 12:14:57 +02:00
#include "stdafx.h"
2017-04-19 20:24:52 +02:00
#include "Emu/Cell/PPUModule.h"
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", []()
{
REG_FUNC(cellRtcAlarm, cellRtcAlarmRegister);
REG_FUNC(cellRtcAlarm, cellRtcAlarmUnregister);
2019-04-05 20:14:01 +02:00
REG_FUNC(cellRtcAlarm, cellRtcAlarmNotification);
2019-04-10 19:34:44 +02:00
REG_FUNC(cellRtcAlarm, cellRtcAlarmStopRunning);
2017-04-19 20:24:52 +02:00
REG_FUNC(cellRtcAlarm, cellRtcAlarmGetStatus);
});