mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 17:01:24 +12:00
26 lines
539 B
C++
26 lines
539 B
C++
#include "stdafx.h"
|
|
#include "Emu/System.h"
|
|
#include "Emu/PSP2/ARMv7Module.h"
|
|
|
|
#include "sceMt19937.h"
|
|
|
|
logs::channel sceMt19937("sceMt19937", logs::level::notice);
|
|
|
|
s32 sceMt19937Init(vm::ptr<SceMt19937Context> pCtx, u32 seed)
|
|
{
|
|
throw EXCEPTION("");
|
|
}
|
|
|
|
u32 sceMt19937UInt(vm::ptr<SceMt19937Context> pCtx)
|
|
{
|
|
throw EXCEPTION("");
|
|
}
|
|
|
|
|
|
#define REG_FUNC(nid, name) REG_FNID(SceMt19937, nid, name)
|
|
|
|
DECLARE(arm_module_manager::SceMt19937)("SceMt19937", []()
|
|
{
|
|
REG_FUNC(0xEE5BA27C, sceMt19937Init);
|
|
REG_FUNC(0x29E43BB5, sceMt19937UInt);
|
|
});
|