mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
PPU: register undocumented functions in cellSysmodule (#1987)
This commit is contained in:
parent
53b2e19d96
commit
2a3029a62c
1 changed files with 14 additions and 0 deletions
|
@ -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);
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue