2020-12-05 13:08:24 +01:00
|
|
|
#include "stdafx.h"
|
2017-04-07 14:48:59 +02:00
|
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
|
|
2018-08-25 14:39:00 +02:00
|
|
|
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", []()
|
2025-04-05 21:50:45 +02:00
|
|
|
{
|
|
|
|
|
REG_FUNC(cellLibprof, cellUserTraceInit);
|
|
|
|
|
REG_FUNC(cellLibprof, cellUserTraceRegister);
|
|
|
|
|
REG_FUNC(cellLibprof, cellUserTraceUnregister);
|
|
|
|
|
REG_FUNC(cellLibprof, cellUserTraceTerminate);
|
|
|
|
|
});
|