rpcsx/rpcs3/Emu/PSP2/Modules/sceLiveArea.cpp

26 lines
598 B
C++
Raw Normal View History

#include "stdafx.h"
#include "Emu/System.h"
2016-05-13 13:17:26 +03:00
#include "Emu/PSP2/ARMv7Module.h"
2015-06-21 02:04:01 +03:00
#include "sceLiveArea.h"
2016-05-13 13:17:26 +03:00
logs::channel sceLiveArea("sceLiveArea", logs::level::notice);
2016-02-02 00:53:16 +03:00
2015-06-21 02:04:01 +03:00
s32 sceLiveAreaResourceReplaceAll(vm::cptr<char> dirpath)
2015-01-30 02:58:53 +03:00
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-30 02:58:53 +03:00
}
s32 sceLiveAreaResourceGetStatus()
{
fmt::throw_exception("Unimplemented" HERE);
2015-01-30 02:58:53 +03:00
}
2016-02-02 00:53:16 +03:00
#define REG_FUNC(nid, name) REG_FNID(SceLiveArea, nid, name)
2016-02-02 00:53:16 +03:00
DECLARE(arm_module_manager::SceLiveArea)("SceLiveArea", []()
{
2015-01-30 02:58:53 +03:00
REG_FUNC(0xA4B506F9, sceLiveAreaResourceReplaceAll);
REG_FUNC(0x54A395FB, sceLiveAreaResourceGetStatus);
});