rpcsx/rpcs3/Emu/SysCalls/Modules/cellGameExec.cpp
2015-09-08 13:47:00 +03:00

53 lines
1.1 KiB
C++

#include "stdafx.h"
#include "Emu/Memory/Memory.h"
#include "Emu/SysCalls/Modules.h"
#include "cellGame.h"
extern Module cellGameExec;
s32 cellGameSetExitParam()
{
throw EXCEPTION("");
}
s32 cellGameGetHomeDataExportPath()
{
throw EXCEPTION("");
}
s32 cellGameGetHomePath()
{
throw EXCEPTION("");
}
s32 cellGameGetHomeDataImportPath()
{
throw EXCEPTION("");
}
s32 cellGameGetHomeLaunchOptionPath()
{
throw EXCEPTION("");
}
s32 cellGameGetBootGameInfo(vm::ptr<u32> type, vm::ptr<char> dirName, vm::ptr<u32> execData)
{
cellGameExec.Todo("cellGameGetBootGameInfo(type=*0x%x, dirName=*0x%x, execData=*0x%x)", type, dirName, execData);
// TODO: Support more boot types
*type = CELL_GAME_GAMETYPE_SYS;
return CELL_OK;
}
Module cellGameExec("cellGameExec", []()
{
REG_FUNC(cellGameExec, cellGameSetExitParam);
REG_FUNC(cellGameExec, cellGameGetHomeDataExportPath);
REG_FUNC(cellGameExec, cellGameGetHomePath);
REG_FUNC(cellGameExec, cellGameGetHomeDataImportPath);
REG_FUNC(cellGameExec, cellGameGetHomeLaunchOptionPath);
REG_FUNC(cellGameExec, cellGameGetBootGameInfo);
});