From 2a3029a62cf22cea3d310b3df9c54acb5c1cc63c Mon Sep 17 00:00:00 2001 From: raven02 Date: Mon, 25 Jul 2016 08:43:02 +0800 Subject: [PATCH] PPU: register undocumented functions in cellSysmodule (#1987) --- rpcs3/Emu/Cell/Modules/cellSysmodule.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/rpcs3/Emu/Cell/Modules/cellSysmodule.cpp b/rpcs3/Emu/Cell/Modules/cellSysmodule.cpp index 99be319178..f288526468 100644 --- a/rpcs3/Emu/Cell/Modules/cellSysmodule.cpp +++ b/rpcs3/Emu/Cell/Modules/cellSysmodule.cpp @@ -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); });