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

44 lines
825 B
C++
Raw Normal View History

2017-04-19 20:24:52 +02:00
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
LOG_CHANNEL(cellRtcAlarm);
2017-04-19 20:24:52 +02:00
s32 cellRtcAlarmRegister()
{
UNIMPLEMENTED_FUNC(cellRtcAlarm);
return CELL_OK;
}
s32 cellRtcAlarmUnregister()
{
UNIMPLEMENTED_FUNC(cellRtcAlarm);
return CELL_OK;
}
2019-04-05 20:14:01 +02:00
s32 cellRtcAlarmNotification()
2017-04-19 20:24:52 +02:00
{
UNIMPLEMENTED_FUNC(cellRtcAlarm);
return CELL_OK;
}
2019-04-10 19:34:44 +02:00
s32 cellRtcAlarmStopRunning()
2017-04-19 20:24:52 +02:00
{
UNIMPLEMENTED_FUNC(cellRtcAlarm);
return CELL_OK;
}
2019-04-10 19:34:44 +02:00
s32 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);
});