mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
split rpcs3 and hle libraries
merge rpcs3 utilities
This commit is contained in:
parent
b33e2662b6
commit
62ad27d1e2
1233 changed files with 7004 additions and 3819 deletions
43
ps3fw/cellRtcAlarm.cpp
Normal file
43
ps3fw/cellRtcAlarm.cpp
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/Cell/PPUModule.h"
|
||||
|
||||
LOG_CHANNEL(cellRtcAlarm);
|
||||
|
||||
error_code cellRtcAlarmRegister()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellRtcAlarm);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellRtcAlarmUnregister()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellRtcAlarm);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellRtcAlarmNotification()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellRtcAlarm);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellRtcAlarmStopRunning()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellRtcAlarm);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code cellRtcAlarmGetStatus()
|
||||
{
|
||||
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);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue