mirror of
https://github.com/mupen64plus-ae/parallel-rsp.git
synced 2024-11-23 05:29:39 +00:00
Ifdefs for debug JIT.
This commit is contained in:
parent
a5a1a393c4
commit
313f1761a5
@ -1,4 +1,8 @@
|
||||
#ifdef DEBUG_JIT
|
||||
#include "rsp.hpp"
|
||||
#else
|
||||
#include "rsp_jit.hpp"
|
||||
#endif
|
||||
#include <stdint.h>
|
||||
|
||||
#include "m64p_plugin.h"
|
||||
@ -10,7 +14,11 @@
|
||||
namespace RSP
|
||||
{
|
||||
RSP_INFO rsp;
|
||||
#ifdef DEBUG_JIT
|
||||
RSP::CPU cpu;
|
||||
#else
|
||||
RSP::JIT::CPU cpu;
|
||||
#endif
|
||||
short MFC0_count[32];
|
||||
int SP_STATUS_TIMEOUT;
|
||||
} // namespace RSP
|
||||
|
Loading…
Reference in New Issue
Block a user