rpcsx/ps3fw/cellLibprof.cpp

37 lines
703 B
C++
Raw Normal View History

2020-12-05 13:08:24 +01:00
#include "stdafx.h"
2017-04-07 14:48:59 +02:00
#include "Emu/Cell/PPUModule.h"
LOG_CHANNEL(cellLibprof);
2017-04-07 14:48:59 +02:00
2020-07-15 23:16:24 +02:00
error_code cellUserTraceInit()
2017-04-07 14:48:59 +02:00
{
UNIMPLEMENTED_FUNC(cellLibprof);
return CELL_OK;
}
2020-07-15 23:16:24 +02:00
error_code cellUserTraceRegister()
2017-04-07 14:48:59 +02:00
{
UNIMPLEMENTED_FUNC(cellLibprof);
return CELL_OK;
}
2020-07-15 23:16:24 +02:00
error_code cellUserTraceUnregister()
2017-04-07 14:48:59 +02:00
{
UNIMPLEMENTED_FUNC(cellLibprof);
return CELL_OK;
}
2020-07-15 23:16:24 +02:00
error_code cellUserTraceTerminate()
2017-04-07 14:48:59 +02:00
{
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);
});