mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-03 23:30:02 +01:00
16 lines
271 B
C++
16 lines
271 B
C++
#include "stdafx.h"
|
|
#include "Emu/Memory/Memory.h"
|
|
#include "Emu/SysCalls/Modules.h"
|
|
|
|
extern Module cellSysconf;
|
|
|
|
s32 cellSysconfBtGetDeviceList()
|
|
{
|
|
throw EXCEPTION("");
|
|
}
|
|
|
|
Module cellSysconf("cellSysconf", []()
|
|
{
|
|
REG_FUNC(cellSysconf, cellSysconfBtGetDeviceList);
|
|
});
|