mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-03 15:20:27 +01:00
16 lines
335 B
C++
16 lines
335 B
C++
#pragma once
|
|
|
|
namespace vm { using namespace ps3; }
|
|
|
|
// SysCalls
|
|
s32 sys_trace_create();
|
|
s32 sys_trace_start();
|
|
s32 sys_trace_stop();
|
|
s32 sys_trace_update_top_index();
|
|
s32 sys_trace_destroy();
|
|
s32 sys_trace_drain();
|
|
s32 sys_trace_attach_process();
|
|
s32 sys_trace_allocate_buffer();
|
|
s32 sys_trace_free_buffer();
|
|
s32 sys_trace_create2();
|