project64/Source/Project64-rsp/Rsp.h

23 lines
583 B
C
Raw Normal View History

#pragma once
#include <Project64-plugin-spec/Rsp.h>
2016-01-27 09:11:59 +00:00
2023-07-13 11:39:18 +00:00
#include "cpu/RspTypes.h"
#include <stdint.h>
2016-01-27 09:11:59 +00:00
// Profiling
2023-06-29 02:59:07 +00:00
#define Default_ProfilingOn false
#define Default_IndvidualBlock false
#define Default_ShowErrors false
#define Default_AudioHle false
2016-01-27 09:11:59 +00:00
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
2016-01-27 09:11:59 +00:00
2023-06-29 02:59:07 +00:00
extern bool 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;