2022-06-27 10:02:38 +00:00
|
|
|
#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"
|
2023-06-01 11:46:23 +00:00
|
|
|
#include <stdint.h>
|
2016-01-27 09:11:59 +00:00
|
|
|
|
2021-03-19 06:13:56 +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);
|
2016-02-13 19:58:42 +00:00
|
|
|
void DisplayError(char * Message, ...);
|
2016-01-27 09:11:59 +00:00
|
|
|
|
2023-06-01 11:46:23 +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;
|
2023-06-01 07:41:26 +00:00
|
|
|
extern void * hinstDLL;
|