mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
Partial commit: Modules (cell)
This commit is contained in:
parent
7e30a0f464
commit
5637c22363
140 changed files with 7290 additions and 8243 deletions
30
rpcs3/Emu/Cell/Modules/cellSysconf.cpp
Normal file
30
rpcs3/Emu/Cell/Modules/cellSysconf.cpp
Normal 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);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue