mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
31 lines
604 B
C++
31 lines
604 B
C++
#include "stdafx.h"
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
logs::channel cellSysconf("cellSysconf", logs::level::notice);
|
|
|
|
s32 cellSysconfAbort()
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 cellSysconfOpen()
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
s32 cellSysconfBtGetDeviceList()
|
|
{
|
|
fmt::throw_exception("Unimplemented" HERE);
|
|
}
|
|
|
|
void cellSysutil_Sysconf_init()
|
|
{
|
|
REG_FUNC(cellSysutil, cellSysconfAbort);
|
|
REG_FUNC(cellSysutil, cellSysconfOpen);
|
|
}
|
|
|
|
DECLARE(ppu_module_manager::cellSysconf)("cellSysconfExtUtility", []()
|
|
{
|
|
REG_FUNC(cellSysconfExtUtility, cellSysconfBtGetDeviceList);
|
|
});
|