mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 03:08:36 +12:00
29 lines
600 B
C++
29 lines
600 B
C++
#include "stdafx.h"
|
|
#include "Emu/System.h"
|
|
#include "Emu/ARMv7/PSVFuncList.h"
|
|
|
|
#include "sceMt19937.h"
|
|
|
|
s32 sceMt19937Init(vm::ptr<SceMt19937Context> pCtx, u32 seed)
|
|
{
|
|
throw __FUNCTION__;
|
|
}
|
|
|
|
u32 sceMt19937UInt(vm::ptr<SceMt19937Context> pCtx)
|
|
{
|
|
throw __FUNCTION__;
|
|
}
|
|
|
|
|
|
#define REG_FUNC(nid, name) reg_psv_func(nid, &sceMt19937, #name, name)
|
|
|
|
psv_log_base sceMt19937("SceMt19937", []()
|
|
{
|
|
sceMt19937.on_load = nullptr;
|
|
sceMt19937.on_unload = nullptr;
|
|
sceMt19937.on_stop = nullptr;
|
|
sceMt19937.on_error = nullptr;
|
|
|
|
REG_FUNC(0xEE5BA27C, sceMt19937Init);
|
|
REG_FUNC(0x29E43BB5, sceMt19937UInt);
|
|
});
|