mirror of
https://github.com/ran-j/PS2Recomp.git
synced 2026-09-26 16:59:35 -04:00
af53b08543
feat: added TODO_NAMED to help debug fix: disable for now audio thread
19 lines
493 B
C++
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
|