mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-09 00:14:56 +00:00
Add cellLibprof module (#2637)
This commit is contained in:
parent
27ea4285ef
commit
a1cc40e7b1
5 changed files with 43 additions and 0 deletions
36
rpcs3/Emu/Cell/Modules/cellLibprof.cpp
Normal file
36
rpcs3/Emu/Cell/Modules/cellLibprof.cpp
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/Cell/PPUModule.h"
|
||||
|
||||
logs::channel cellLibprof("cellLibprof", logs::level::notice);
|
||||
|
||||
s32 cellUserTraceInit()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellLibprof);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellUserTraceRegister()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellLibprof);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellUserTraceUnregister()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellLibprof);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 cellUserTraceTerminate()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cellLibprof);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
DECLARE(ppu_module_manager::cellLibprof)("cellLibprof", []()
|
||||
{
|
||||
REG_FUNC(cellLibprof, cellUserTraceInit);
|
||||
REG_FUNC(cellLibprof, cellUserTraceRegister);
|
||||
REG_FUNC(cellLibprof, cellUserTraceUnregister);
|
||||
REG_FUNC(cellLibprof, cellUserTraceTerminate);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue