Files
PS2Recomp/ps2xRuntime/include/ps2_stubs.h
T
Ran-j af53b08543 feat: added more empty stubs
feat: added TODO_NAMED to help debug
fix: disable for now audio thread
2026-01-28 16:37:18 -03:00

19 lines
493 B
C++

#ifndef PS2_STUBS_H
#define PS2_STUBS_H
#include "ps2_runtime.h"
#include "ps2_call_list.h"
#include <cstdint>
namespace ps2_stubs
{
#define PS2_DECLARE_STUB(name) void name(uint8_t *rdram, R5900Context *ctx, PS2Runtime *runtime);
PS2_STUB_LIST(PS2_DECLARE_STUB)
#undef PS2_DECLARE_STUB
void TODO(uint8_t *rdram, R5900Context *ctx, PS2Runtime *runtime);
void TODO_NAMED(const char *name, uint8_t *rdram, R5900Context *ctx, PS2Runtime *runtime);
}
#endif // PS2_STUBS_H