rpcsx/ps3fw/cellRtcAlarm.cpp

44 lines
867 B
C++
Raw Normal View History

2020-12-05 13:08:24 +01: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);
REG_FUNC(cellRtcAlarm, cellRtcAlarmNotification);
REG_FUNC(cellRtcAlarm, cellRtcAlarmStopRunning);
REG_FUNC(cellRtcAlarm, cellRtcAlarmGetStatus);
});