split rpcs3 and hle libraries

merge rpcs3 utilities
This commit is contained in:
DH 2025-04-08 19:46:57 +03:00
parent b33e2662b6
commit 62ad27d1e2
1233 changed files with 7004 additions and 3819 deletions

36
ps3fw/cellLibprof.cpp Normal file
View file

@ -0,0 +1,36 @@
#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);
});