mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-19 21:35:12 +00:00
PSP2
This commit is contained in:
parent
5c52521a0a
commit
38c444cfa1
133 changed files with 767 additions and 478 deletions
37
rpcs3/Emu/PSP2/Modules/sceMd5.cpp
Normal file
37
rpcs3/Emu/PSP2/Modules/sceMd5.cpp
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/PSP2/ARMv7Module.h"
|
||||
|
||||
#include "sceMd5.h"
|
||||
|
||||
logs::channel sceMd5("sceMd5", logs::level::notice);
|
||||
|
||||
s32 sceMd5Digest(vm::cptr<void> plain, u32 len, vm::ptr<u8> digest)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceMd5BlockInit(vm::ptr<SceMd5Context> pContext)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceMd5BlockUpdate(vm::ptr<SceMd5Context> pContext, vm::cptr<void> plain, u32 len)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
s32 sceMd5BlockResult(vm::ptr<SceMd5Context> pContext, vm::ptr<u8> digest)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
}
|
||||
|
||||
#define REG_FUNC(nid, name) REG_FNID(SceMd5, nid, name)
|
||||
|
||||
DECLARE(arm_module_manager::SceMd5)("SceMd5", []()
|
||||
{
|
||||
REG_FUNC(0xB845BCCB, sceMd5Digest);
|
||||
REG_FUNC(0x4D6436F9, sceMd5BlockInit);
|
||||
REG_FUNC(0x094A4902, sceMd5BlockUpdate);
|
||||
REG_FUNC(0xB94ABF83, sceMd5BlockResult);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue