2017-04-07 14:48:59 +02:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
|
|
2017-05-13 20:30:37 +02:00
|
|
|
logs::channel cellLibprof("cellLibprof");
|
2017-04-07 14:48:59 +02:00
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
});
|