mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-08 17:50:31 +01:00
NOTE: I included some changes of the forks of O1L and Dante38490 to my fork. However, a conflict appeared while merging their sources with the ones of DH. I had to resolve this conflict manually and push all the changes like a new commit, that's why there changes weren't recorded individually and (probably) won't appear at in the commits list. I am very sorry for this, I'll try to avoid this in the future. In order to preserve the authors of those commits, I write this list here: O1L: Dummy Modules (cellAudio, cellSaveData, and more)23ece01a0b784fc571b3Dante38490: Spotted and fixed an issue in git-version-gen.cmd44e8867125Regarding my changes: * New lv2 SysCalls implemented (and others improved) * SDATA unpacker implemented * Changed layout of sc_table
65 lines
1.2 KiB
C++
65 lines
1.2 KiB
C++
#include "stdafx.h"
|
|
#include "Emu/SysCalls/SysCalls.h"
|
|
|
|
SysCallBase sys_trace("sys_trace");
|
|
|
|
int sys_trace_create()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_create()");
|
|
return CELL_OK;
|
|
}
|
|
|
|
int sys_trace_start()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_start()");
|
|
return CELL_OK;
|
|
}
|
|
|
|
int sys_trace_stop()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_stop()");
|
|
return CELL_OK;
|
|
}
|
|
|
|
int sys_trace_update_top_index()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_update_top_index()");
|
|
return CELL_OK;
|
|
}
|
|
|
|
int sys_trace_destroy()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_destroy()");
|
|
return CELL_OK;
|
|
}
|
|
|
|
int sys_trace_drain()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_drain()");
|
|
return CELL_OK;
|
|
}
|
|
|
|
int sys_trace_attach_process()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_attach_process()");
|
|
return CELL_OK;
|
|
}
|
|
|
|
int sys_trace_allocate_buffer()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_allocate_buffer()");
|
|
return CELL_OK;
|
|
}
|
|
|
|
int sys_trace_free_buffer()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_free_buffer()");
|
|
return CELL_OK;
|
|
}
|
|
|
|
int sys_trace_create2()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_create2()");
|
|
return CELL_OK;
|
|
}
|