mirror of
https://github.com/Azimer/Apollo64.git
synced 2025-04-02 10:31:54 -04:00
24 lines
No EOL
428 B
C
24 lines
No EOL
428 B
C
#ifndef __RECOMPILERDEBUG_DOT_H__
|
|
#define __RECOMPILERDEBUG_DOT_H__
|
|
|
|
#include <windows.h>
|
|
#include "../common.h"
|
|
|
|
// Local Globals:
|
|
|
|
extern bool inDebugger; // Are we inside the Debugger?
|
|
|
|
extern u64 DebugRegs[32]; // A set of Registers for debugging (to check Reg Cache)
|
|
|
|
|
|
// Local Functions:
|
|
|
|
void OpenDebuggerWindow (HINSTANCE hApp, HWND hParent);
|
|
|
|
|
|
// Legacy Functions
|
|
|
|
void OpcodeLookup (DWORD addy, char *out);
|
|
|
|
|
|
#endif |