mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 00:41:26 +12:00
hle: Add cellSysmoduleUnloadModuleInternal and cellSysmoduleLoadModuleInternal functions
This commit is contained in:
parent
f369aeab7a
commit
1916cc1691
1 changed files with 4 additions and 4 deletions
|
@ -361,13 +361,13 @@ s32 cellSysmoduleFetchImage()
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 cellSysmodule_B498BF77()
|
s32 cellSysmoduleUnloadModuleInternal()
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSysmodule);
|
UNIMPLEMENTED_FUNC(cellSysmodule);
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 cellSysmodule_D9B8C0EE()
|
s32 cellSysmoduleLoadModuleInternal()
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED_FUNC(cellSysmodule);
|
UNIMPLEMENTED_FUNC(cellSysmodule);
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
|
@ -389,7 +389,7 @@ DECLARE(ppu_module_manager::cellSysmodule)("cellSysmodule", []()
|
||||||
REG_FUNC(cellSysmodule, cellSysmoduleIsLoaded);
|
REG_FUNC(cellSysmodule, cellSysmoduleIsLoaded);
|
||||||
REG_FUNC(cellSysmodule, cellSysmoduleGetImagesize);
|
REG_FUNC(cellSysmodule, cellSysmoduleGetImagesize);
|
||||||
REG_FUNC(cellSysmodule, cellSysmoduleFetchImage);
|
REG_FUNC(cellSysmodule, cellSysmoduleFetchImage);
|
||||||
REG_FNID(cellSysmodule, 0xB498BF77, cellSysmodule_B498BF77);
|
REG_FUNC(cellSysmodule, cellSysmoduleUnloadModuleInternal);
|
||||||
REG_FNID(cellSysmodule, 0xD9B8C0EE, cellSysmodule_D9B8C0EE);
|
REG_FUNC(cellSysmodule, cellSysmoduleLoadModuleInternal);
|
||||||
REG_FNID(cellSysmodule, 0x1A267F98, cellSysmodule_1A267F98);
|
REG_FNID(cellSysmodule, 0x1A267F98, cellSysmodule_1A267F98);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue