23 lines
583 B
C
23 lines
583 B
C
#pragma once
|
|
#include <Project64-plugin-spec/Rsp.h>
|
|
|
|
#include "cpu/RspTypes.h"
|
|
#include <stdint.h>
|
|
|
|
// 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; |