Partial commit: Modules (cell)

This commit is contained in:
Nekotekina 2016-03-21 22:43:03 +03:00
parent 7e30a0f464
commit 5637c22363
140 changed files with 7290 additions and 8243 deletions

View file

@ -0,0 +1,30 @@
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
LOG_CHANNEL(cellSysconf);
s32 cellSysconfAbort()
{
throw EXCEPTION("");
}
s32 cellSysconfOpen()
{
throw EXCEPTION("");
}
s32 cellSysconfBtGetDeviceList()
{
throw EXCEPTION("");
}
void cellSysutil_Sysconf_init()
{
REG_FUNC(cellSysutil, cellSysconfAbort);
REG_FUNC(cellSysutil, cellSysconfOpen);
}
DECLARE(ppu_module_manager::cellSysconf)("cellSysconfExtUtility", []()
{
REG_FUNC(cellSysconfExtUtility, cellSysconfBtGetDeviceList);
});