mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 18:58:36 +12:00
36 lines
697 B
C++
36 lines
697 B
C++
#include "stdafx.h"
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
LOG_CHANNEL(cellLibprof);
|
|
|
|
error_code cellUserTraceInit()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellLibprof);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code cellUserTraceRegister()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellLibprof);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code cellUserTraceUnregister()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellLibprof);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code 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);
|
|
});
|