#include "stdafx.h" #include "Emu/System.h" #include "Emu/PSP2/ARMv7Module.h" #include "sceMd5.h" logs::channel sceMd5("sceMd5"); s32 sceMd5Digest(vm::cptr plain, u32 len, vm::ptr digest) { fmt::throw_exception("Unimplemented" HERE); } s32 sceMd5BlockInit(vm::ptr pContext) { fmt::throw_exception("Unimplemented" HERE); } s32 sceMd5BlockUpdate(vm::ptr pContext, vm::cptr plain, u32 len) { fmt::throw_exception("Unimplemented" HERE); } s32 sceMd5BlockResult(vm::ptr pContext, vm::ptr digest) { fmt::throw_exception("Unimplemented" HERE); } #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); });