mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-17 12:25:15 +00:00
ARMv7: stubs for other modules, loader improved
This commit is contained in:
parent
1fa301b719
commit
62c8f2ac34
66 changed files with 2616 additions and 59 deletions
38
rpcs3/Emu/ARMv7/Modules/sceSulpha.cpp
Normal file
38
rpcs3/Emu/ARMv7/Modules/sceSulpha.cpp
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/ARMv7/PSVFuncList.h"
|
||||
|
||||
extern psv_log_base sceSulpha;
|
||||
|
||||
#define REG_FUNC(nid, name) reg_psv_func(nid, &sceSulpha, #name, name)
|
||||
|
||||
psv_log_base sceSulpha("SceSulpha", []()
|
||||
{
|
||||
sceSulpha.on_load = nullptr;
|
||||
sceSulpha.on_unload = nullptr;
|
||||
sceSulpha.on_stop = nullptr;
|
||||
|
||||
//REG_FUNC(0xB4668AEA, sceSulphaNetworkInit);
|
||||
//REG_FUNC(0x0FC71B72, sceSulphaNetworkShutdown);
|
||||
//REG_FUNC(0xA6A05C50, sceSulphaGetDefaultConfig);
|
||||
//REG_FUNC(0xD52E5A5A, sceSulphaGetNeededMemory);
|
||||
//REG_FUNC(0x324F158F, sceSulphaInit);
|
||||
//REG_FUNC(0x10770BA7, sceSulphaShutdown);
|
||||
//REG_FUNC(0x920EC7BF, sceSulphaUpdate);
|
||||
//REG_FUNC(0x7968A138, sceSulphaFileConnect);
|
||||
//REG_FUNC(0xB16E7B88, sceSulphaFileDisconnect);
|
||||
//REG_FUNC(0x5E15E164, sceSulphaSetBookmark);
|
||||
//REG_FUNC(0xC5752B6B, sceSulphaAgentsGetNeededMemory);
|
||||
//REG_FUNC(0x7ADB454D, sceSulphaAgentsRegister);
|
||||
//REG_FUNC(0x2A8B74D7, sceSulphaAgentsUnregister);
|
||||
//REG_FUNC(0xDE7E2911, sceSulphaGetAgent);
|
||||
//REG_FUNC(0xA41B7402, sceSulphaNodeNew);
|
||||
//REG_FUNC(0xD44C9F86, sceSulphaNodeDelete);
|
||||
//REG_FUNC(0xBF61F3B8, sceSulphaEventNew);
|
||||
//REG_FUNC(0xD5D995A9, sceSulphaEventDelete);
|
||||
//REG_FUNC(0xB0C2B9CE, sceSulphaEventAdd);
|
||||
//REG_FUNC(0xBC6A2833, sceSulphaEventReport);
|
||||
//REG_FUNC(0x29F0DA12, sceSulphaGetTimestamp);
|
||||
//REG_FUNC(0x951D159D, sceSulphaLogSetLevel);
|
||||
//REG_FUNC(0x5C6815C6, sceSulphaLogHandler);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue