#pragma once #include #include "cpu/RspTypes.h" #include // Profiling #define Default_ProfilingOn false #define Default_IndvidualBlock false #define Default_ShowErrors false #define Default_AudioHle false uint32_t AsciiToHex(char * HexValue); void DisplayError(char * Message, ...); #define InterpreterCPU 0 #define RecompilerCPU 1 extern bool DebuggingEnabled, Profiling, IndvidualBlock, ShowErrors, BreakOnStart, LogRDP, LogX86Code; extern uint32_t CPUCore; extern DEBUG_INFO DebugInfo; extern RSP_INFO RSPInfo; extern void * hinstDLL;