mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-02-14 15:40:17 +00:00
Add cellRtc functions
This commit is contained in:
parent
22e679e23e
commit
c863da278f
@ -252,6 +252,48 @@ s32 cellRtcCompareTick(vm::ptr<CellRtcTick> pTick0, vm::ptr<CellRtcTick> pTick1)
|
|||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
s32 cellRtcGetCurrentSecureTick()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(cellRtc);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
s32 cellRtcGetTickResolution()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(cellRtc);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
s32 cellRtcGetSystemTime()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(cellRtc);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
s32 cellRtcSetConf()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(cellRtc);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
s32 cellRtcSetCurrentSecureTick()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(cellRtc);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
s32 cellRtcSetCurrentTick()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(cellRtc);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
s32 cellRtcSetSystemTime()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(cellRtc);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
DECLARE(ppu_module_manager::cellRtc)("cellRtc", []()
|
DECLARE(ppu_module_manager::cellRtc)("cellRtc", []()
|
||||||
{
|
{
|
||||||
REG_FUNC(cellRtc, cellRtcGetCurrentTick);
|
REG_FUNC(cellRtc, cellRtcGetCurrentTick);
|
||||||
@ -292,4 +334,11 @@ DECLARE(ppu_module_manager::cellRtc)("cellRtc", []()
|
|||||||
REG_FUNC(cellRtc, cellRtcCheckValid);
|
REG_FUNC(cellRtc, cellRtcCheckValid);
|
||||||
|
|
||||||
REG_FUNC(cellRtc, cellRtcCompareTick);
|
REG_FUNC(cellRtc, cellRtcCompareTick);
|
||||||
|
REG_FUNC(cellRtc, cellRtcGetCurrentSecureTick);
|
||||||
|
REG_FUNC(cellRtc, cellRtcGetTickResolution);
|
||||||
|
REG_FUNC(cellRtc, cellRtcGetSystemTime);
|
||||||
|
REG_FUNC(cellRtc, cellRtcSetConf);
|
||||||
|
REG_FUNC(cellRtc, cellRtcSetCurrentSecureTick);
|
||||||
|
REG_FUNC(cellRtc, cellRtcSetCurrentTick);
|
||||||
|
REG_FUNC(cellRtc, cellRtcSetSystemTime);
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user