This commit is contained in:
Nekotekina 2016-05-13 13:17:26 +03:00
parent 5c52521a0a
commit 38c444cfa1
133 changed files with 767 additions and 478 deletions

View 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);
});