rpcsx/rpcs3/Emu/Cell/Modules/cellSysconf.cpp

31 lines
604 B
C++
Raw Normal View History

2015-07-31 00:53:52 +02:00
#include "stdafx.h"
2016-03-21 20:43:03 +01:00
#include "Emu/Cell/PPUModule.h"
2015-07-31 00:53:52 +02:00
2016-05-13 15:55:34 +02:00
logs::channel cellSysconf("cellSysconf", logs::level::notice);
2015-07-31 00:53:52 +02:00
s32 cellSysconfAbort()
{
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellSysconfOpen()
{
fmt::throw_exception("Unimplemented" HERE);
}
2015-07-31 00:53:52 +02:00
s32 cellSysconfBtGetDeviceList()
{
fmt::throw_exception("Unimplemented" HERE);
2015-07-31 00:53:52 +02:00
}
void cellSysutil_Sysconf_init()
{
REG_FUNC(cellSysutil, cellSysconfAbort);
REG_FUNC(cellSysutil, cellSysconfOpen);
}
2016-03-21 20:43:03 +01:00
DECLARE(ppu_module_manager::cellSysconf)("cellSysconfExtUtility", []()
2015-07-31 00:53:52 +02:00
{
2016-03-21 20:43:03 +01:00
REG_FUNC(cellSysconfExtUtility, cellSysconfBtGetDeviceList);
2015-07-31 00:53:52 +02:00
});