project64/Source/RSP/Rsp.h

32 lines
664 B
C
Raw Normal View History

#pragma once
#include <Project64-plugin-spec/Rsp.h>
2016-01-27 09:11:59 +00:00
#if defined(__cplusplus)
extern "C" {
#endif
2021-04-12 06:34:26 +00:00
#include <stdint.h>
#include "Types.h"
2016-01-27 09:11:59 +00:00
// Profiling
2016-01-27 09:11:59 +00:00
#define Default_ProfilingOn FALSE
#define Default_IndvidualBlock FALSE
#define Default_ShowErrors FALSE
#define Default_AudioHle FALSE
2016-02-11 08:23:15 +00:00
uint32_t AsciiToHex(char * HexValue);
void DisplayError(char * Message, ...);
2016-01-27 09:11:59 +00:00
#define InterpreterCPU 0
#define RecompilerCPU 1
extern int DebuggingEnabled, Profiling, IndvidualBlock, ShowErrors, BreakOnStart, LogRDP, LogX86Code;
2016-02-11 08:23:15 +00:00
extern uint32_t CPUCore;
2016-01-27 09:11:59 +00:00
extern DEBUG_INFO DebugInfo;
extern RSP_INFO RSPInfo;
extern void * hinstDLL;
2016-01-27 09:11:59 +00:00
#if defined(__cplusplus)
}
#endif