PPU: register undocumented functions in cellSysmodule (#1987)

This commit is contained in:
raven02 2016-07-25 08:43:02 +08:00 committed by GitHub
parent 53b2e19d96
commit 2a3029a62c
1 changed files with 14 additions and 0 deletions

View File

@ -344,6 +344,18 @@ s32 cellSysmoduleFetchImage()
return CELL_OK;
}
s32 cellSysmodule_B498BF77()
{
UNIMPLEMENTED_FUNC(cellSysmodule);
return CELL_OK;
}
s32 cellSysmodule_D9B8C0EE()
{
UNIMPLEMENTED_FUNC(cellSysmodule);
return CELL_OK;
}
DECLARE(ppu_module_manager::cellSysmodule)("cellSysmodule", []()
{
REG_FUNC(cellSysmodule, cellSysmoduleInitialize);
@ -354,4 +366,6 @@ DECLARE(ppu_module_manager::cellSysmodule)("cellSysmodule", []()
REG_FUNC(cellSysmodule, cellSysmoduleIsLoaded);
REG_FUNC(cellSysmodule, cellSysmoduleGetImagesize);
REG_FUNC(cellSysmodule, cellSysmoduleFetchImage);
REG_FNID(cellSysmodule, 0xB498BF77, cellSysmodule_B498BF77);
REG_FNID(cellSysmodule, 0xD9B8C0EE, cellSysmodule_D9B8C0EE);
});